From b582f3a4fbba32286419907ac5aa4ef3cec3efc2 Mon Sep 17 00:00:00 2001 From: Oliver Hamlet Date: Wed, 15 Jan 2025 17:59:54 +0000 Subject: [PATCH] Fix minimum required CMake FIND_PACKAGE_ARGS was introduced in 3.24. I don't think there's any newer functionality used, but I could be wrong. --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 6e40e71b..9a3c4746 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,4 +1,4 @@ -cmake_minimum_required(VERSION 3.8) +cmake_minimum_required(VERSION 3.24) if(POLICY CMP0135) cmake_policy(SET CMP0135 NEW) endif()