From 605a31cc7ca9a4d12b17ddda72b2d98574398a97 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Max=20L=C3=BCbke?= Date: Fri, 24 Oct 2025 08:41:56 +0200 Subject: [PATCH 1/2] build(deps): update minimum CMake version to 3.20 --- CMakeLists.txt | 2 +- README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 76516be..eb05b81 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,5 +1,5 @@ # debian stable (currently bullseye) -cmake_minimum_required(VERSION 3.18) +cmake_minimum_required(VERSION 3.20) project( tug diff --git a/README.md b/README.md index 54213ac..089cd1a 100644 --- a/README.md +++ b/README.md @@ -25,7 +25,7 @@ grid with constant alpha for all grid cells can be solved reliably. # Requirements - C++17 compliant compiler -- [CMake](https://cmake.org/) >= 3.18 +- [CMake](https://cmake.org/) >= 3.20 - [Eigen](https://eigen.tuxfamily.org/) >= 3.4.0 # Getting started From 1a51dd5a1ebebf8f4ec2f4bfad8a71c311277ca9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Max=20L=C3=BCbke?= Date: Fri, 24 Oct 2025 08:42:14 +0200 Subject: [PATCH 2/2] build(deps): update Eigen3 dependency version range --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index eb05b81..78af77c 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -6,7 +6,7 @@ project( VERSION 0.4 LANGUAGES CXX) -find_package(Eigen3 3.4 REQUIRED NO_MODULE) +find_package(Eigen3 3.4...5 REQUIRED NO_MODULE) find_package(OpenMP) include(GNUInstallDirs)