diff --git a/CMakeLists.txt b/CMakeLists.txt index afeaffc5..a47fe8af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -118,18 +118,18 @@ if (ENABLE_CUBEB) option(BUILD_TOOLS "" OFF) option(BUNDLE_SPEEX "" OFF) set(USE_WINMM OFF CACHE BOOL "") - add_subdirectory("dependencies/cubeb") + add_subdirectory("dependencies/cubeb" EXCLUDE_FROM_ALL) set_property(TARGET cubeb PROPERTY MSVC_RUNTIME_LIBRARY "MultiThreaded$<$:Debug>") add_library(cubeb::cubeb ALIAS cubeb) endif() add_compile_definitions("HAS_CUBEB=1") endif() -add_subdirectory("dependencies/ih264d") +add_subdirectory("dependencies/ih264d" EXCLUDE_FROM_ALL) find_package(ZArchive) if (NOT ZArchive_FOUND) - add_subdirectory("dependencies/ZArchive") + add_subdirectory("dependencies/ZArchive" EXCLUDE_FROM_ALL) endif() add_subdirectory(src)