From f31edb02fce6e1ce7ff918e2d7c7adb0a991afd2 Mon Sep 17 00:00:00 2001 From: Gabriel Studer <gabriel.studer@unibas.ch> Date: Fri, 11 Apr 2025 08:52:57 +0200 Subject: [PATCH] adapt cmake minimum version cmake boost refactor lifted minimum cmake version to 3.25. There was really no good reason for that specific version except some github forum entry where I checked for cmake boost examples set it to 3.25. Our CI currently runs on ubuntu 22.04LTS which comes with cmake 3.22. Lets see if it passes when lowering the required version to that one. --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index a50fff8e7..da8bb9c07 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -2,7 +2,7 @@ # Author: Marco Biasini #------------------------------------------------------------------------------- -cmake_minimum_required(VERSION 3.25 FATAL_ERROR) +cmake_minimum_required(VERSION 3.22 FATAL_ERROR) # Set CMake policies # Behaviour of target_link_libraries, always link by full path. CMP0060 can -- GitLab