File tree 1 file changed +14
-3
lines changed
1 file changed +14
-3
lines changed Original file line number Diff line number Diff line change @@ -13,6 +13,7 @@ option(FORCE_SSE "Compile with SSE instruction only" OFF)
13
13
option (FORCE_SSSE3 "Compile with SSSE3 instruction only" OFF )
14
14
option (FORCE_SSE41 "Compile with SSE4.1 instruction only" OFF )
15
15
option (OPTIONAL_TEST "Compile optional test (might be broken)" OFF )
16
+ # UNITTEST option must be after CMAKE_BUILT_TYPE
16
17
17
18
# where cmake find custom modules
18
19
list (APPEND CMAKE_MODULE_PATH ${CMAKE_SOURCE_DIR} /cmake/modules)
@@ -88,6 +89,13 @@ endif()
88
89
message (STATUS "Build type set to: ${CMAKE_BUILD_TYPE} " )
89
90
message ("CMake system: ${CMAKE_SYSTEM_NAME} " )
90
91
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
+
91
99
# set compiler
92
100
include (FindCompiler)
93
101
@@ -202,9 +210,12 @@ add_subdirectory(${CUSTOM_MISC_DIR})
202
210
add_subdirectory (src)
203
211
204
212
# 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)
208
219
209
220
# manage scripts
210
221
add_subdirectory (scripts)
You can’t perform that action at this time.
0 commit comments