From 4a24a0afacfda505d3a5642ad7928fe6a58dabeb Mon Sep 17 00:00:00 2001 From: mosfet80 Date: Tue, 17 Oct 2023 12:25:29 +0200 Subject: [PATCH] Update GitUtils.cmake cmake 2.8 are deprecated in cmake3.27. Switch to cmake 3.16.3 (the same cmake used in CMakeLists.txt) --- cmake/common/GitUtils.cmake | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmake/common/GitUtils.cmake b/cmake/common/GitUtils.cmake index 6378752d908..96a55bd87c4 100644 --- a/cmake/common/GitUtils.cmake +++ b/cmake/common/GitUtils.cmake @@ -1,4 +1,4 @@ -cmake_minimum_required(VERSION 2.8.7) +cmake_minimum_required(VERSION 3.16.3) include(${PROJECT_SOURCE_DIR}/cmake/common/Utils.cmake) include(CMakeParseArguments)