From 2c7b5f333ce71f3e2c81ed7721694a3fd39ce487 Mon Sep 17 00:00:00 2001 From: Sebastian Messmer Date: Fri, 29 Mar 2019 21:21:37 -0700 Subject: [PATCH] Exclude any vendor libraries from the all build target --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 00018bfb..fdbff715 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -48,7 +48,7 @@ if(MSVC) add_definitions(/bigobj) endif() -add_subdirectory(vendor) +add_subdirectory(vendor EXCLUDE_FROM_ALL) add_subdirectory(src) add_subdirectory(doc) add_subdirectory(test)