diff options
author | Petr Štetiar <ynezz@true.cz> | 2021-03-19 14:21:10 +0100 |
---|---|---|
committer | Jo-Philipp Wich <jo@mein.io> | 2021-04-23 00:42:29 +0200 |
commit | 617a114a2c4d7cdb766bd111375237fd9cb15663 (patch) | |
tree | 16a3a23c4a2884c07af813d33cefa2765ce6333d /CMakeLists.txt | |
parent | f360350bd874aeec0806c8df02c7a20a54c44406 (diff) |
cmake: make 3.0 minimum version
Probably using 3.0+ features anyway and should silence following
warning:
CMake Deprecation Warning at CMakeLists.txt:1 (cmake_minimum_required):
Compatibility with CMake < 2.8.12 will be removed from a future version of
CMake.
Update the VERSION argument <min> value or use a ...<max> suffix to tell
CMake that the project does not need compatibility with older versions.
Signed-off-by: Petr Štetiar <ynezz@true.cz>
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r-- | CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 2046392..e3dfe81 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,4 +1,4 @@ -cmake_minimum_required(VERSION 2.6) +cmake_minimum_required(VERSION 3.0) include(CheckFunctionExists) include(CheckSymbolExists) |