From 1a917666c7cc150d85c3bd50f302d273906be438 Mon Sep 17 00:00:00 2001 From: Guilhem Saurel Date: Sat, 16 Sep 2023 16:49:26 +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 7c79ce10..ae05b090 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,4 +1,4 @@ -cmake_minimum_required(VERSION 3.1) +cmake_minimum_required(VERSION 3.10) # Project properties set(PROJECT_ORG loco-3d)