Updated minimum cmake requirement down to 2.8.12

* As described in issue #3801 the upcoming cmake 3.19
  will not support cmake 2.6 any more
* This PR updates the mimimum required cmake version
  to 2.8.12, which will not give a warning with cmake 3.19
  but still compatible with MbedTLS support of RHEL/CentOS 7 LTS
* Adding ChangeLog.d/bugfix_PR3802.txt

Signed-off-by: Peter Toft <peter.toft@dirac.com>
This commit is contained in:
Peter Toft 2020-10-21 12:48:52 +02:00
parent 72ca39737f
commit 70e2062218
2 changed files with 4 additions and 1 deletions

View File

@ -16,7 +16,7 @@
# will be removed as well as this note.
#
cmake_minimum_required(VERSION 2.6)
cmake_minimum_required(VERSION 2.8.12)
if(TEST_CPP)
project("mbed TLS" C CXX)
else()

View File

@ -0,0 +1,3 @@
Requirement changes
* Update the minimum required CMake version to 2.8.12.
* This silences a warning on CMake 3.19.0. #3801