From 276bc0db7f5aff9154406cc7d1d5c104a07f0978 Mon Sep 17 00:00:00 2001 From: Bastian Dehn Date: Tue, 12 Mar 2024 17:54:46 +0100 Subject: [PATCH] change run tests variable to option --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 2ef7c06..4a39fcd 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -6,7 +6,7 @@ project("kds_s2000w_net" VERSION "0.0.1") add_subdirectory(src) -set(RUN_TESTS OFF CACHE BOOL "build and run tests") +option(RUN_TESTS "Enable tests" OFF) if(RUN_TESTS) add_subdirectory(tests) -- 2.39.5