Skip to content

Commit 1ab26c6

Browse files
committed
cmake: not build ctest binaries as default
unit test binaries are disabled by default now. To enable it use either cmake -DUNITTEST=1 .. or cmake -DCMAKE_BUILD_TYPE=DEBUG where CMAKE_BUILD_TYPE must be different from "RELEASE" see https://cmake.org/cmake/help/v3.0/variable/CMAKE_BUILD_TYPE.html
1 parent 8fd4beb commit 1ab26c6

File tree

1 file changed

+14
-3
lines changed

1 file changed

+14
-3
lines changed

CMakeLists.txt

+14-3
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ option(FORCE_SSE "Compile with SSE instruction only" OFF)
1313
option(FORCE_SSSE3 "Compile with SSSE3 instruction only" OFF)
1414
option(FORCE_SSE41 "Compile with SSE4.1 instruction only" OFF)
1515
option(OPTIONAL_TEST "Compile optional test (might be broken)" OFF)
16+
# UNITTEST option must be after CMAKE_BUILT_TYPE
1617

1718
# where cmake find custom modules
1819
list(APPEND CMAKE_MODULE_PATH ${CMAKE_SOURCE_DIR}/cmake/modules)
@@ -88,6 +89,13 @@ endif()
8889
message(STATUS "Build type set to: ${CMAKE_BUILD_TYPE}")
8990
message("CMake system: ${CMAKE_SYSTEM_NAME}")
9091

92+
# Unittest should be on for dev builds and off for releases.
93+
if(CMAKE_BUILD_TYPE MATCHES "Release")
94+
option(UNITTEST "Build unittest binaries." OFF)
95+
else()
96+
option(UNITTEST "Build unittest binaries." ON)
97+
endif()
98+
9199
# set compiler
92100
include(FindCompiler)
93101

@@ -202,9 +210,12 @@ add_subdirectory(${CUSTOM_MISC_DIR})
202210
add_subdirectory(src)
203211

204212
# ctest
205-
include(CTest)
206-
enable_testing()
207-
add_subdirectory(test)
213+
if(UNITTEST)
214+
message(STATUS "Build unit test binaries")
215+
include(CTest)
216+
enable_testing()
217+
add_subdirectory(test)
218+
endif(UNITTEST)
208219

209220
# manage scripts
210221
add_subdirectory(scripts)

0 commit comments

Comments
 (0)