From 394b41a7bfbbbc96cb9ec4887204ac11ae8bfebb Mon Sep 17 00:00:00 2001 From: Corentin Le Molgat Date: Fri, 25 Jun 2021 16:19:37 +0200 Subject: [PATCH] cmake: Use CTest default (Fix #169) note: this is the default behaviour when using include(CTest) --- CMakeLists.txt | 3 --- 1 file changed, 3 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index f9daeac5..767f8b52 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -17,9 +17,6 @@ if(NOT CMAKE_BUILD_TYPE) FORCE) endif(NOT CMAKE_BUILD_TYPE) -# BUILD_TESTING is a standard CMake variable, but we declare it here to make it -# prominent in the GUI. -option(BUILD_TESTING "Enable test (depends on googletest)." OFF) # BUILD_SHARED_LIBS is a standard CMake variable, but we declare it here to make # it prominent in the GUI. # cpu_features uses bit-fields which are - to some extends - implementation-defined (see https://en.cppreference.com/w/c/language/bit_field).