summaryrefslogtreecommitdiff
path: root/CMakeLists.txt
diff options
context:
space:
mode:
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r--CMakeLists.txt5
1 files changed, 4 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 1ffa5bf4..cd2bffee 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -179,7 +179,10 @@ else ()
message(STATUS "Systemd service installation disabled by user")
endif()
-enable_testing()
+include(CTest) # Sets BUILD_TESTING by default to on.
+# BUILD_TESTS: control if tests are included by CMAKE.
+# Can depend on more than only BUILD_TESTING in the future.
+set(BUILD_TESTS ${BUILD_TESTING})
add_custom_target(check COMMAND ${CMAKE_CTEST_COMMAND})
find_package(ProtobufC QUIET)