From bff01fbdccdb0842542705616bbcc504a8506858 Mon Sep 17 00:00:00 2001 From: KatekovAnton Date: Sun, 6 Apr 2025 04:14:34 +0900 Subject: [PATCH] * CMakeLists.txt: Fix cmake 4 error by specifying the policy version. --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index f0a6cf1c3..b14e813e9 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -109,7 +109,7 @@ # support). # CMake 3.12 provides for IMPORTED targets for common libraries like zlib, libpng and bzip2 -cmake_minimum_required(VERSION 3.12) +cmake_minimum_required(VERSION 3.12...3.31.0) include(CheckIncludeFile) include(CMakeDependentOption)