From 2808e956688805549e9f513a15fd559962261e18 Mon Sep 17 00:00:00 2001 From: Hans-Erik Floryd Date: Mon, 25 Oct 2021 13:39:07 +0200 Subject: [PATCH] Bump cmake version Specifying a minimum cmake version 0f 2.8.4 triggers a warning with never cmake, due to backwards compatibility issue. Bump to 2.8.12 which is the oldest version without the warning. --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index b397193..576979e 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,7 +1,7 @@ # CMakeLists files in this project can # refer to the root source directory of the project as ${SOES_SOURCE_DIR} and # to the root binary directory of the project as ${SOES_BINARY_DIR}. -cmake_minimum_required (VERSION 2.8.4) +cmake_minimum_required (VERSION 2.8.12) set(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} "${CMAKE_SOURCE_DIR}/cmake") project (SOES)