From 00d1b8e10c6bd43486e76cafbcf245593d5a3a94 Mon Sep 17 00:00:00 2001 From: Matt Williams Date: Sun, 9 Mar 2014 17:55:14 +0000 Subject: [PATCH] Update required CMake version to 2.8.6 --- CMakeLists.txt | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 1b025392..6691be4a 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -20,7 +20,7 @@ # 3. This notice may not be removed or altered from any source # distribution. -CMAKE_MINIMUM_REQUIRED(VERSION 2.8.3) +CMAKE_MINIMUM_REQUIRED(VERSION 2.8.6) PROJECT(PolyVox) @@ -83,7 +83,6 @@ INCLUDE(Packaging.cmake) OPTION(ENABLE_TESTS "Should the tests be built" ON) IF(ENABLE_TESTS AND QT_QTTEST_FOUND) INCLUDE(CTest) - MARK_AS_ADVANCED(FORCE DART_TESTING_TIMEOUT) #This is only needed to hide the variable in the GUI (CMake bug) until 2.8.5 MARK_AS_ADVANCED(FORCE BUILD_TESTING) ADD_SUBDIRECTORY(tests) SET(BUILD_TESTS ON)