From 7bcacfa603919b25434a801a75178d9b3a2e9c9d Mon Sep 17 00:00:00 2001 From: Guilhem Saurel Date: Sat, 16 Sep 2023 16:41:34 +0200 Subject: [PATCH] CMake: require >= 3.10 ref. https://github.com/jrl-umi3218/jrl-cmakemodules/issues/338 and fix deprecation warning about CMake 3.5 from CMake 3.27 --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 5e1f1b42..7fd4290e 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -2,7 +2,7 @@ # Copyright (c) 2014-2019 CNRS Copyright (c) 2018-2023 INRIA # -cmake_minimum_required(VERSION 3.1) +cmake_minimum_required(VERSION 3.10) set(PROJECT_NAME eigenpy) set(PROJECT_DESCRIPTION "Bindings between Numpy and Eigen using Boost.Python")