From 231ae4aeef0205d82ed02eaf7c2d22615191208b Mon Sep 17 00:00:00 2001 From: Olivier Stasse <olivier.stasse@laas.fr> Date: Tue, 24 Oct 2023 14:52:04 +0200 Subject: [PATCH] [CMakeLists.txt] Update requirement of cmake to 3.10 Include python to have python-helpers for python_install_on_site. --- CMakeLists.txt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 552615e..f0c5a2d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,7 +1,7 @@ # Copyright 2010-2020, Florent Lamiraux, Thomas Moulard, Olivier Stasse, Guilhem # Saurel, JRL, CNRS/AIST, LAAS-CNRS -cmake_minimum_required(VERSION 3.1) +cmake_minimum_required(VERSION 3.10) # Project properties set(PROJECT_ORG stack-of-tasks) @@ -21,6 +21,7 @@ set(DOXYGEN_USE_MATHJAX YES) # JRL-cmakemodule setup include(cmake/base.cmake) include(cmake/boost.cmake) +include(cmake/python.cmake) # Project definition compute_project_args(PROJECT_ARGS LANGUAGES CXX) -- GitLab