summaryrefslogtreecommitdiff
path: root/externals
diff options
context:
space:
mode:
authorGravatar bunnei2018-07-28 13:44:50 -0400
committerGravatar bunnei2018-07-30 21:45:24 -0400
commitf437c11caf2c1afc0b7d0fdb808be10d7b1adfcf (patch)
treee5224d2e6b57c5ac0aec46377d6bfae9072ab820 /externals
parentaudio_core: Add interfaces for Sink and SinkStream. (diff)
downloadyuzu-f437c11caf2c1afc0b7d0fdb808be10d7b1adfcf.tar.gz
yuzu-f437c11caf2c1afc0b7d0fdb808be10d7b1adfcf.tar.xz
yuzu-f437c11caf2c1afc0b7d0fdb808be10d7b1adfcf.zip
audio_core: Implement Sink and SinkStream interfaces with cubeb.
Diffstat (limited to 'externals')
-rw-r--r--externals/CMakeLists.txt6
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()
54# Opus 54# Opus
55add_subdirectory(opus) 55add_subdirectory(opus)
56target_include_directories(opus INTERFACE ./opus/include) 56target_include_directories(opus INTERFACE ./opus/include)
57
58# Cubeb
59if(ENABLE_CUBEB)
60 set(BUILD_TESTS OFF CACHE BOOL "")
61 add_subdirectory(cubeb)
62endif()