From 98dd296d2c62990f9602be101b32dc5a21477930 Mon Sep 17 00:00:00 2001 From: Justin Carpentier Date: Thu, 9 Nov 2023 19:09:10 +0100 Subject: [PATCH] cmake: enforce minimal version of CMAKE --- CMakeLists.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 520a2c8..bf08bb1 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,8 +1,8 @@ # -# Copyright (c) 2021-2022 INRIA +# Copyright (c) 2021-2023 INRIA # -CMAKE_MINIMUM_REQUIRED(VERSION 3.1) +CMAKE_MINIMUM_REQUIRED(VERSION 3.10) SET(PROJECT_NAME pycppad) SET(PROJECT_DESCRIPTION "Python bindings for CppAD and CppADCodeGen using Boost.Python")