From 99c88bb7bd7c2d91c6873abd6e6d5ee04f4f164c Mon Sep 17 00:00:00 2001 From: Mahavir Jain Date: Thu, 17 Dec 2020 14:04:38 +0530 Subject: [PATCH] Updated minimum cmake requirement down to 2.8.12 Upcoming cmake 3.19 will not support cmake 2.6 any more, hence the fix. Please see https://github.com/ARMmbed/mbedtls/pull/3802 for more details. --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 5f7d0d8862..582a88faca 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,4 +1,4 @@ -cmake_minimum_required(VERSION 2.6) +cmake_minimum_required(VERSION 2.8.12) if(TEST_CPP) project("mbed TLS" C CXX) else()