From 7d1144cf68cc88fbe916c4d12a5dc7a23d24b0d5 Mon Sep 17 00:00:00 2001 From: Zeb Burke-Conte Date: Wed, 29 Jan 2025 09:50:22 -0800 Subject: [PATCH 1/2] Use range in cmake_minimum --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 35aaf3cd..ab0bf7d7 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,5 +1,5 @@ # Cmake config largely taken from catch2 -cmake_minimum_required(VERSION 3.5) +cmake_minimum_required(VERSION 3.5..3.24) if(CMAKE_VERSION VERSION_GREATER_EQUAL 3.24) cmake_policy(SET CMP0135 NEW) From 331cefb1e9007f9d862652cb138a3bbabb57cdf2 Mon Sep 17 00:00:00 2001 From: Max Bachmann Date: Tue, 11 Feb 2025 13:31:38 +0100 Subject: [PATCH 2/2] update cmake minimum version --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index ab0bf7d7..5aed8433 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,5 +1,5 @@ # Cmake config largely taken from catch2 -cmake_minimum_required(VERSION 3.5..3.24) +cmake_minimum_required(VERSION 3.5..3.31) if(CMAKE_VERSION VERSION_GREATER_EQUAL 3.24) cmake_policy(SET CMP0135 NEW)