From 09db4f25dd751c3d7f43456573ff167203fcae1a Mon Sep 17 00:00:00 2001 From: ISSOtm Date: Mon, 13 Apr 2026 00:32:38 +0200 Subject: [PATCH] Bump the maximum version of CMake tested with Future-proofing! This is both the version on my own machine, and what's distributed by Homebrew (thus on GitHub's runners). --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index bb5c01e4..408ff6c2 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -4,7 +4,7 @@ # Older versions *may* work, but we can't test them; compat patches are welcome. # - 3.17 is required for `CHECK_*` messages to display properly, but is not essential. # - 3.9 is required for LTO checks. -cmake_minimum_required(VERSION 3.24...4.2 FATAL_ERROR) +cmake_minimum_required(VERSION 3.24...4.3 FATAL_ERROR) # Read the project version from the header (the canonical source of truth). file(STRINGS "include/version.hpp" version_defines REGEX "^[ \t]*#define[ \t]+PACKAGE_VERSION_")