Browse Source
Merge pull request #959 from KAMiKAZOW/cubeb-compilation
Make building cubeb optional
pull/15/merge
bunnei
7 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
2 additions and
2 deletions
-
src/audio_core/CMakeLists.txt
|
|
|
@ -4,8 +4,6 @@ add_library(audio_core STATIC |
|
|
|
audio_renderer.cpp |
|
|
|
audio_renderer.h |
|
|
|
buffer.h |
|
|
|
cubeb_sink.cpp |
|
|
|
cubeb_sink.h |
|
|
|
codec.cpp |
|
|
|
codec.h |
|
|
|
null_sink.h |
|
|
|
@ -15,6 +13,8 @@ add_library(audio_core STATIC |
|
|
|
sink_details.cpp |
|
|
|
sink_details.h |
|
|
|
sink_stream.h |
|
|
|
|
|
|
|
$<$<BOOL:${ENABLE_CUBEB}>:cubeb_sink.cpp cubeb_sink.h> |
|
|
|
) |
|
|
|
|
|
|
|
create_target_directory_groups(audio_core) |
|
|
|
|