From 037892739fbc4cd72294381a55be51c08b823cb1 Mon Sep 17 00:00:00 2001 From: Gabriel Ganne Date: Wed, 9 Nov 2022 11:51:55 +0100 Subject: [PATCH] Increase CMake required version 3.5 -> 3.20 Commit 777e0b245c510e273e5ba917939a21778cb060f2 introduced cmake_path which has been added to Cmake in 3.20 onlyi [1], so this should only make the error message more explicit. [1] https://cmake.org/cmake/help/git-master/command/cmake_path.html --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 41817d8c..b1c545ff 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,4 +1,4 @@ -cmake_minimum_required(VERSION 3.5 FATAL_ERROR) +cmake_minimum_required(VERSION 3.20 FATAL_ERROR) if (POLICY CMP0075) cmake_policy(SET CMP0075 NEW)