From 3a4af94254d21e51ae260ad71fcc605ebb7e734e Mon Sep 17 00:00:00 2001 From: Loic Guegan Date: Thu, 19 Jan 2023 13:31:09 +0100 Subject: [PATCH] Make unit tests optional --- CMakeLists.txt | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index dbe80e1..771f289 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -22,5 +22,8 @@ if(NOT TARGET ChessMoveInterface) endif() # Unit tests -enable_testing() -add_subdirectory(./tests) \ No newline at end of file +set(COMPILE_TESTS OFF CACHE BOOL "Should unit tests be compiled") +if(COMPILE_TESTS) + enable_testing() + add_subdirectory(./tests) +endif() \ No newline at end of file