diff options
author | Naios <naios-dev@live.de> | 2017-10-05 01:13:43 +0200 |
---|---|---|
committer | Naios <naios-dev@live.de> | 2017-10-16 22:54:23 +0200 |
commit | 01355dc1018e37fbe3b503025da969b80718a918 (patch) | |
tree | 8d0356e0bf6148ab6312ab052665a1371ec2382a | |
parent | 561169d8df100baf102a55d4117d11b0321d24bb (diff) |
Build: Require CMake 3.2
* This is below current package version of
debian stretch stable CMake on which we
orientate at.
* Required for CMake target features
(cherry picked from commit e5e7919b64f8b6dc1c872871175ae1e30e25c555)
-rw-r--r-- | CMakeLists.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index c6650eab5e2..96b42a01170 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -8,8 +8,8 @@ # WITHOUT ANY WARRANTY, to the extent permitted by law; without even the # implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. -# We require CMake >= 3.0 -cmake_minimum_required(VERSION 3.0) +# We require CMake >= 3.2 +cmake_minimum_required(VERSION 3.2) # add this options before PROJECT keyword set(CMAKE_DISABLE_SOURCE_CHANGES ON) |