From ef4e720890ca7b2a68989bb8cd2f58231b87ca82 Mon Sep 17 00:00:00 2001 From: Jason Rhinelander Date: Sat, 10 Sep 2022 11:20:41 -0300 Subject: [PATCH] Bump cmake min to 3.13 and adopt policies up to 3.24 3.13...3.xx means "minimum is 3.13, but use any new cmake policies introduced up to 3.xx". There was, in particular, a policy w.r.t. external project timestamps causing warnings under 3.24. --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index d8ad1a3c8..2ee6b8293 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,4 +1,4 @@ -cmake_minimum_required(VERSION 3.10) # bionic's cmake version +cmake_minimum_required(VERSION 3.13...3.24) # 3.13 is buster's version set(CMAKE_EXPORT_COMPILE_COMMANDS ON)