From fcd09b2f851118534e1cac8e8598f889564291d5 Mon Sep 17 00:00:00 2001 From: King_DuckZ Date: Sun, 20 Jan 2019 01:13:46 +0000 Subject: [PATCH] Fix option name - it's spelled BUILD_TESTING. --- CMakeLists.txt | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 32fd642..59338fe 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -3,7 +3,9 @@ project(vectorwrapper VERSION 1.1.0) include(CMakePackageConfigHelpers) -if (BUILD_TESTS) +include(CTest) + +if (BUILD_TESTING) add_subdirectory(test) endif()