From 1fd4c388620ef7684222b5c01027411ef8757e10 Mon Sep 17 00:00:00 2001 From: Joel Rosdahl Date: Thu, 17 Jul 2025 15:25:05 +0200 Subject: [PATCH] build: Drop minimum CMake version to 3.18 This is to keep supporting Debian 11 for a while longer. Note that 8648532e3cdcd6a0c4fb12b65e1ca9a8972a1e06 requires CMake > 3.16 (not sure whether 3.17 works), so dropping back to 3.15 is not possible. Closes #1611. --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4bdd7cd3..6ed89db9 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,4 +1,4 @@ -cmake_minimum_required(VERSION 3.22) +cmake_minimum_required(VERSION 3.18) project(ccache LANGUAGES C CXX ASM ASM_MASM) if(MSVC) -- 2.47.2