From 54a2fd8c850e626343b79c4cc8fcac2f638ec890 Mon Sep 17 00:00:00 2001 From: Lasse Collin Date: Thu, 23 Mar 2023 15:14:29 +0200 Subject: [PATCH] CMake: Bump maximum policy version to 3.26. It adds only one new policy related to FOLDERS which we don't use. This makes it clear that the code is compatible with the policies up to 3.26. --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index b4a9e5d1..584f1af1 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -46,7 +46,7 @@ # ############################################################################# -cmake_minimum_required(VERSION 3.13...3.25 FATAL_ERROR) +cmake_minimum_required(VERSION 3.13...3.26 FATAL_ERROR) include(CMakePushCheckState) include(CheckIncludeFile)