diff options
Diffstat (limited to 'externals/CMakeLists.txt')
| -rw-r--r-- | externals/CMakeLists.txt | 14 |
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) | |||
| 35 | add_subdirectory(lz4/contrib/cmake_unofficial) | 35 | add_subdirectory(lz4/contrib/cmake_unofficial) |
| 36 | target_include_directories(lz4_static INTERFACE ./lz4/lib) | 36 | target_include_directories(lz4_static INTERFACE ./lz4/lib) |
| 37 | 37 | ||
| 38 | # mbedtls | ||
| 39 | add_subdirectory(mbedtls EXCLUDE_FROM_ALL) | ||
| 40 | target_include_directories(mbedtls PUBLIC ./mbedtls/include) | ||
| 41 | |||
| 38 | # MicroProfile | 42 | # MicroProfile |
| 39 | add_library(microprofile INTERFACE) | 43 | add_library(microprofile INTERFACE) |
| 40 | target_include_directories(microprofile INTERFACE ./microprofile) | 44 | target_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) |
| 52 | endif() | 56 | endif() |
| 57 | |||
| 58 | # Opus | ||
| 59 | add_subdirectory(opus) | ||
| 60 | target_include_directories(opus INTERFACE ./opus/include) | ||
| 61 | |||
| 62 | # Cubeb | ||
| 63 | if(ENABLE_CUBEB) | ||
| 64 | set(BUILD_TESTS OFF CACHE BOOL "") | ||
| 65 | add_subdirectory(cubeb EXCLUDE_FROM_ALL) | ||
| 66 | endif() | ||