From d6e3cdb4d69dbe9c164bae697fe7d7714ad79f6a Mon Sep 17 00:00:00 2001 From: Peter SZEKVOLGYI Date: Sun, 8 Oct 2023 18:59:55 +0200 Subject: [PATCH] Change cmake minimum version to 3.5 Change cmake minimum version to 3.5 to work after 3.27 versions of cmake. log with cmake 3.27.6: Compatibility with CMake < 3.5 will be removed from a future version of CMake. --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index a1e310f..0b475b6 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -2,7 +2,7 @@ # This file is subject to the license terms in the LICENSE file # found in the top-level directory of this distribution. -cmake_minimum_required(VERSION 3.1) +cmake_minimum_required(VERSION 3.5) project(TYPE_SAFE)