Browse Source
Merge pull request #948 from hcorion/fix-mbedtls-installing-files
CMakeLists: Make mbedtls and cubeb not install headers and libraries
pull/15/merge
bunnei
8 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with
3 additions and
3 deletions
-
externals/CMakeLists.txt
-
externals/mbedtls
|
|
|
@ -36,7 +36,7 @@ add_subdirectory(lz4/contrib/cmake_unofficial) |
|
|
|
target_include_directories(lz4_static INTERFACE ./lz4/lib) |
|
|
|
|
|
|
|
# mbedtls |
|
|
|
add_subdirectory(mbedtls) |
|
|
|
add_subdirectory(mbedtls EXCLUDE_FROM_ALL) |
|
|
|
target_include_directories(mbedtls PUBLIC ./mbedtls/include) |
|
|
|
|
|
|
|
# MicroProfile |
|
|
|
@ -62,5 +62,5 @@ target_include_directories(opus INTERFACE ./opus/include) |
|
|
|
# Cubeb |
|
|
|
if(ENABLE_CUBEB) |
|
|
|
set(BUILD_TESTS OFF CACHE BOOL "") |
|
|
|
add_subdirectory(cubeb) |
|
|
|
add_subdirectory(cubeb EXCLUDE_FROM_ALL) |
|
|
|
endif() |
|
|
|
@ -1 +1 @@ |
|
|
|
Subproject commit 06442b840ea62e2ceda0dc58f255cfff49fed5b6 |
|
|
|
Subproject commit 06b1b55434dd5d821e911583d629cff39a04b38f |