mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-24 23:59:02 +08:00
44 lines
1.1 KiB
Diff
44 lines
1.1 KiB
Diff
diff --git a/CMakeLists.txt b/CMakeLists.txt
|
|
index 1ee6fd4..439e26a 100644
|
|
--- a/CMakeLists.txt
|
|
+++ b/CMakeLists.txt
|
|
@@ -122,6 +122,11 @@ set(EXTRA_DIST
|
|
nmake.opt
|
|
libtiff-4.pc.in)
|
|
|
|
+option(BUILD_TOOLS "Build tool executables" ON)
|
|
+option(BUILD_DOCS "Build docs" ON)
|
|
+option(BUILD_CONTRIB "Build contributed executables" ON)
|
|
+option(BUILD_TESTS "Build tests" ON)
|
|
+
|
|
# These are annoyingly verbose, produce false positives or don't work
|
|
# nicely with all supported compiler versions, so are disabled unless
|
|
# explicitly enabled.
|
|
@@ -719,12 +724,20 @@ endif()
|
|
# Process subdirectories
|
|
add_subdirectory(port)
|
|
add_subdirectory(libtiff)
|
|
-add_subdirectory(tools)
|
|
-add_subdirectory(test)
|
|
-add_subdirectory(contrib)
|
|
-add_subdirectory(build)
|
|
-add_subdirectory(man)
|
|
-add_subdirectory(html)
|
|
+if(BUILD_TOOLS)
|
|
+ add_subdirectory(tools)
|
|
+endif()
|
|
+if(BUILD_TESTS)
|
|
+ add_subdirectory(test)
|
|
+endif()
|
|
+if(BUILD_CONTRIB)
|
|
+ add_subdirectory(contrib)
|
|
+endif()
|
|
+if(BUILD_DOCS)
|
|
+ add_subdirectory(build)
|
|
+ add_subdirectory(man)
|
|
+ add_subdirectory(html)
|
|
+endif()
|
|
|
|
#message(STATUS "EXTRA_DIST: ${EXTRA_DIST}")
|
|
|