From fc14759c22e381c438adbdf5043380828b2fdd49 Mon Sep 17 00:00:00 2001 From: ArchercatNEO Date: Wed, 8 Oct 2025 17:20:35 +0100 Subject: [PATCH] build: bump required CMake version to 3.10 CMake 4.0 removed compatibility for CMake policies below 3.5 and CMake 3.31 deprecated policies below 3.10. Update the CMake policity to clear all errors as well as depracation warnings. --- src/CMakeLists.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index fba86d9..2cd7715 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -1,6 +1,6 @@ # {{{ CMake stuff -cmake_minimum_required(VERSION 3.8) -cmake_policy(VERSION 3.8) +cmake_minimum_required(VERSION 3.10) +cmake_policy(VERSION 3.10) # }}} #{{{ Basic App setup