From 094aeb41bb93e9199d24d665ee43e9e05d6d7b1c Mon Sep 17 00:00:00 2001 From: Anas Nashif Date: Tue, 8 Jun 2021 09:35:02 -0400 Subject: [PATCH] cmake: relax minimum version requirements Support for 2.8.12 is being deprecated, so require a range to make the warnings go away. Signed-off-by: Anas Nashif --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 90a492042..3352f38f2 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,5 +1,5 @@ # Determines what CMake APIs we can rely on -cmake_minimum_required (VERSION 2.8.11) +cmake_minimum_required (VERSION 2.8.11...3.13.1) if (${CMAKE_VERSION} VERSION_GREATER 3.2.2) cmake_policy(VERSION 3.2.2) endif()