From 889c006f9fcc57889ccb7d10ebadcf53463ae24c Mon Sep 17 00:00:00 2001 From: Jami Kettunen Date: Sun, 26 Feb 2023 16:26:47 +0200 Subject: cmake: Enable building tests by default We really should do this by default across the board to catch issues with the testing infrastructure; what's the point of having tests if they're not even being actively exercised across a wide range of distributions with varying configurations? :p --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'CMakeLists.txt') diff --git a/CMakeLists.txt b/CMakeLists.txt index bc4295f..7bbc464 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -9,7 +9,7 @@ endif(CMAKE_INSTALL_PREFIX_INITIALIZED_TO_DEFAULT) # Options -option(ENABLE_TESTS "Enable all tests and checks" OFF) +option(ENABLE_TESTS "Enable all tests and checks" ON) option(ENABLE_COVERAGE "Enable coverage reports (includes enabling all tests and checks)" OFF) option(ENABLE_WERROR "Treat all build warnings as errors" OFF) -- cgit v1.2.3