From 134796a9e5c9db3e7e55bf7e35ec0ebba26e041b Mon Sep 17 00:00:00 2001 From: Georg Sauthoff Date: Tue, 15 Nov 2016 21:44:48 +0100 Subject: [PATCH] relax required cmake version e.g. also compiles on CentOS 6 with cmake 2.8 from EPEL --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 5f5a2e6..bc81ad6 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,6 +1,6 @@ # 2016, Georg Sauthoff -cmake_minimum_required(VERSION 3.0) +cmake_minimum_required(VERSION 2.8) project(somake C CXX) include(CheckFunctionExists)