diff options
| author | 2018-08-07 14:25:17 -0400 | |
|---|---|---|
| committer | 2018-08-07 14:25:17 -0400 | |
| commit | 07595987acb4280d1c021e10a5ee075869b65e7a (patch) | |
| tree | b66ea2ae4b8b5db21eeceef943536d923d3eb281 | |
| parent | Merge pull request #956 from lioncash/nv (diff) | |
| parent | Make building cubeb optional (diff) | |
| download | yuzu-07595987acb4280d1c021e10a5ee075869b65e7a.tar.gz yuzu-07595987acb4280d1c021e10a5ee075869b65e7a.tar.xz yuzu-07595987acb4280d1c021e10a5ee075869b65e7a.zip | |
Merge pull request #959 from KAMiKAZOW/cubeb-compilation
Make building cubeb optional
| -rw-r--r-- | src/audio_core/CMakeLists.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/audio_core/CMakeLists.txt b/src/audio_core/CMakeLists.txt index 827ab0ac7..ec71524a3 100644 --- a/src/audio_core/CMakeLists.txt +++ b/src/audio_core/CMakeLists.txt | |||
| @@ -4,8 +4,6 @@ add_library(audio_core STATIC | |||
| 4 | audio_renderer.cpp | 4 | audio_renderer.cpp |
| 5 | audio_renderer.h | 5 | audio_renderer.h |
| 6 | buffer.h | 6 | buffer.h |
| 7 | cubeb_sink.cpp | ||
| 8 | cubeb_sink.h | ||
| 9 | codec.cpp | 7 | codec.cpp |
| 10 | codec.h | 8 | codec.h |
| 11 | null_sink.h | 9 | null_sink.h |
| @@ -15,6 +13,8 @@ add_library(audio_core STATIC | |||
| 15 | sink_details.cpp | 13 | sink_details.cpp |
| 16 | sink_details.h | 14 | sink_details.h |
| 17 | sink_stream.h | 15 | sink_stream.h |
| 16 | |||
| 17 | $<$<BOOL:${ENABLE_CUBEB}>:cubeb_sink.cpp cubeb_sink.h> | ||
| 18 | ) | 18 | ) |
| 19 | 19 | ||
| 20 | create_target_directory_groups(audio_core) | 20 | create_target_directory_groups(audio_core) |