From c9410476e9ff47e6a8b5f75cf05a43bcda17687b Mon Sep 17 00:00:00 2001 From: Andre Werner Date: Thu, 23 Oct 2025 11:38:17 +0200 Subject: [PATCH] CMakeLists.txt: Fix issue for FindPackage version When using FindPackage(ctre v3.10 REQUIRED) in CMake project the following issue occurs: ``` CMake Error at CMakeLists.txt:32 (find_package): Could not find a configuration file for package "ctre" that is compatible with requested version "3.10". /usr/lib/cmake/ctre/ctre-config.cmake, version: 3.9.0 ``` Signed-off-by: Andre Werner --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 9e5a80e9..a9c6a310 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -8,7 +8,7 @@ endif() # When updating to a newer version of CMake, see if we can use the following project(ctre HOMEPAGE_URL "https://compile-time.re" - VERSION 3.9.0 + VERSION 3.10.0 LANGUAGES CXX) set(PROJECT_DESCRIPTION "Fast compile-time regular expressions with support for matching/searching/capturing during compile-time or runtime.")