From: Joel Rosdahl Date: Mon, 14 Jul 2025 09:12:38 +0000 (+0200) Subject: build: Require CMake 3.22 or newer X-Git-Tag: v4.12~90 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=5db81f35f74cc7a4501be3384b8b7d52f4ca9454;p=thirdparty%2Fccache.git build: Require CMake 3.22 or newer For reference, CMake 3.22 is available in Debian 11 as well as Ubuntu 22.04. Distributions based on RHEL 8 have 3.25 or later. --- diff --git a/CMakeLists.txt b/CMakeLists.txt index 48c741f2..4bdd7cd3 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,4 +1,4 @@ -cmake_minimum_required(VERSION 3.15) +cmake_minimum_required(VERSION 3.22) project(ccache LANGUAGES C CXX ASM ASM_MASM) if(MSVC)