From 4b13332d59df0715cde99d65c238e3538f47a0ef Mon Sep 17 00:00:00 2001 From: Hugues Kamba Date: Mon, 27 Jul 2020 11:24:30 +0100 Subject: [PATCH] CMake: Issue a fatal error if a lower version of CMake is used --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index c061a1d362..90c538731f 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -3,7 +3,7 @@ # This is the boilerplate for Mbed OS -cmake_minimum_required(VERSION 3.13) +cmake_minimum_required(VERSION 3.13 FATAL_ERROR) # Using relative paths behavior if(POLICY CMP0076)