mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-30 01:11:30 +08:00
20 lines
661 B
Diff
20 lines
661 B
Diff
diff --git a/CMakeLists.txt b/CMakeLists.txt
|
|
index 3466c5f..6d5c6bd 100644
|
|
--- a/CMakeLists.txt
|
|
+++ b/CMakeLists.txt
|
|
@@ -63,9 +63,13 @@ endif (GRAPHITE2_VM_TYPE STREQUAL "direct" AND NOT (CMAKE_COMPILER_IS_GNUCXX OR
|
|
message(STATUS "Using vm machine type: ${GRAPHITE2_VM_TYPE}")
|
|
|
|
add_subdirectory(src)
|
|
+if(NOT DISABLE_TESTS)
|
|
add_subdirectory(tests)
|
|
+endif()
|
|
+if(NOT DISABLE_DOCS)
|
|
add_subdirectory(doc)
|
|
-if (NOT (GRAPHITE2_NSEGCACHE OR GRAPHITE2_NFILEFACE))
|
|
+endif()
|
|
+if (NOT (GRAPHITE2_NSEGCACHE OR GRAPHITE2_NFILEFACE) AND NOT DISABLE_TESTS)
|
|
add_subdirectory(gr2fonttest)
|
|
endif (NOT (GRAPHITE2_NSEGCACHE OR GRAPHITE2_NFILEFACE))
|
|
|