diff options
author | bunnei <bunneidev@gmail.com> | 2018-07-31 05:29:17 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-07-31 05:29:17 +0200 |
commit | bf9c62bc76a2296c1a81cfc1b83aaf4028578901 (patch) | |
tree | dad8906c597af3f579d4f72f4c9f493503c40665 /externals/CMakeLists.txt | |
parent | Port #3758 from Citra (#852): Add missing std::string import in text_formatter (diff) | |
parent | audio_core: Implement Sink and SinkStream interfaces with cubeb. (diff) | |
download | yuzu-bf9c62bc76a2296c1a81cfc1b83aaf4028578901.tar yuzu-bf9c62bc76a2296c1a81cfc1b83aaf4028578901.tar.gz yuzu-bf9c62bc76a2296c1a81cfc1b83aaf4028578901.tar.bz2 yuzu-bf9c62bc76a2296c1a81cfc1b83aaf4028578901.tar.lz yuzu-bf9c62bc76a2296c1a81cfc1b83aaf4028578901.tar.xz yuzu-bf9c62bc76a2296c1a81cfc1b83aaf4028578901.tar.zst yuzu-bf9c62bc76a2296c1a81cfc1b83aaf4028578901.zip |
Diffstat (limited to 'externals/CMakeLists.txt')
-rw-r--r-- | externals/CMakeLists.txt | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/externals/CMakeLists.txt b/externals/CMakeLists.txt index e51671cb8..4636761e5 100644 --- a/externals/CMakeLists.txt +++ b/externals/CMakeLists.txt @@ -54,3 +54,9 @@ endif() # Opus add_subdirectory(opus) target_include_directories(opus INTERFACE ./opus/include) + +# Cubeb +if(ENABLE_CUBEB) + set(BUILD_TESTS OFF CACHE BOOL "") + add_subdirectory(cubeb) +endif() |