summaryrefslogtreecommitdiff
path: root/externals/CMakeLists.txt
diff options
context:
space:
mode:
Diffstat (limited to 'externals/CMakeLists.txt')
-rw-r--r--externals/CMakeLists.txt14
1 files changed, 14 insertions, 0 deletions
diff --git a/externals/CMakeLists.txt b/externals/CMakeLists.txt
index d2b0652a5..db21f3d50 100644
--- a/externals/CMakeLists.txt
+++ b/externals/CMakeLists.txt
@@ -35,6 +35,10 @@ set(LZ4_BUNDLED_MODE ON)
35add_subdirectory(lz4/contrib/cmake_unofficial) 35add_subdirectory(lz4/contrib/cmake_unofficial)
36target_include_directories(lz4_static INTERFACE ./lz4/lib) 36target_include_directories(lz4_static INTERFACE ./lz4/lib)
37 37
38# mbedtls
39add_subdirectory(mbedtls EXCLUDE_FROM_ALL)
40target_include_directories(mbedtls PUBLIC ./mbedtls/include)
41
38# MicroProfile 42# MicroProfile
39add_library(microprofile INTERFACE) 43add_library(microprofile INTERFACE)
40target_include_directories(microprofile INTERFACE ./microprofile) 44target_include_directories(microprofile INTERFACE ./microprofile)
@@ -50,3 +54,13 @@ if (ARCHITECTURE_x86_64)
50 target_include_directories(xbyak INTERFACE ./xbyak/xbyak) 54 target_include_directories(xbyak INTERFACE ./xbyak/xbyak)
51 target_compile_definitions(xbyak INTERFACE XBYAK_NO_OP_NAMES) 55 target_compile_definitions(xbyak INTERFACE XBYAK_NO_OP_NAMES)
52endif() 56endif()
57
58# Opus
59add_subdirectory(opus)
60target_include_directories(opus INTERFACE ./opus/include)
61
62# Cubeb
63if(ENABLE_CUBEB)
64 set(BUILD_TESTS OFF CACHE BOOL "")
65 add_subdirectory(cubeb EXCLUDE_FROM_ALL)
66endif()