We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 966107f commit c7bfeb9Copy full SHA for c7bfeb9
1 file changed
CMakeLists.txt
@@ -10,7 +10,10 @@ set(CMAKE_VERBOSE_MAKEFILE on)
10
include(${CMAKE_CURRENT_SOURCE_DIR}/cmake/project-defaults.cmake)
11
12
add_subdirectory(yoga)
13
-add_subdirectory(tests)
+option(BUILD_TESTS "Build tests" ON)
14
+if(BUILD_TESTS)
15
+ add_subdirectory(tests)
16
+endif()
17
18
option(BUILD_FUZZ_TESTS "Build fuzz tests" OFF)
19
0 commit comments