From efc3922803a8909d9085caf77ee6a64d324df102 Mon Sep 17 00:00:00 2001 From: Guilhem Saurel <guilhem.saurel@laas.fr> Date: Mon, 14 Dec 2020 11:39:57 +0100 Subject: [PATCH] [CMake] update minimum version Recent CMake versions added this warning: CMake Deprecation Warning at CMakeLists.txt:6 (CMAKE_MINIMUM_REQUIRED): Compatibility with CMake < 2.8.12 will be removed from a future version of CMake. And we are not compatible with CMake < 3.1: ref https://github.com/jrl-umi3218/jrl-cmakemodules/issues/338 --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 2ce516f..49d30b8 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -3,7 +3,7 @@ # Copyright (c) 2018-2020 INRIA # -CMAKE_MINIMUM_REQUIRED(VERSION 2.6) +CMAKE_MINIMUM_REQUIRED(VERSION 3.1) SET(PROJECT_NAME eigenpy) SET(PROJECT_DESCRIPTION "Bindings between Numpy and Eigen using Boost.Python") -- GitLab