Merge pull request #3802 from peter-toft-greve/minimum_cmake

Update mimimum required cmake version
This commit is contained in:
Gilles Peskine 2020-10-26 14:36:08 +01:00 committed by GitHub
commit db8298ca61
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 1 deletions

View file

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