From 9d1ae521e8fa32f21a8696d25a0c5f8d2dddc6c8 Mon Sep 17 00:00:00 2001 From: Martin Kojtal Date: Fri, 4 Sep 2020 08:25:48 +0100 Subject: [PATCH] CMake: 3.18.2 minimum version set There are fixes in the latest version we need for ARMClang. --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index a7b5e2149d..2f751b85ac 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -3,7 +3,7 @@ # This is the boilerplate for Mbed OS -cmake_minimum_required(VERSION 3.13 FATAL_ERROR) +cmake_minimum_required(VERSION 3.18.2 FATAL_ERROR) # Using relative paths behavior if(POLICY CMP0076)