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.
This commit is contained in:
Oliver Hamlet
2025-01-15 18:13:54 +00:00
parent aac3f68a4c
commit b582f3a4fb
+1 -1
View File
@@ -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()