Make unit tests optional

This commit is contained in:
Loic Guegan 2023-01-19 13:31:09 +01:00
parent 720c394c50
commit 3a4af94254

View file

@ -22,5 +22,8 @@ if(NOT TARGET ChessMoveInterface)
endif()
# Unit tests
enable_testing()
add_subdirectory(./tests)
set(COMPILE_TESTS OFF CACHE BOOL "Should unit tests be compiled")
if(COMPILE_TESTS)
enable_testing()
add_subdirectory(./tests)
endif()