diff options
author | Michele Calgaro <[email protected]> | 2024-03-15 10:53:28 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2024-03-17 11:11:37 +0900 |
commit | e04582c215ce22ce199f012681c4cda4134f2ec2 (patch) | |
tree | 8e590c46a2cf88268060dc5f553f3be236871c82 | |
parent | 9ea3fc7ae8217d930353eb3e0be7bfdbdf21a5c7 (diff) | |
download | knights-e04582c215ce22ce199f012681c4cda4134f2ec2.tar.gz knights-e04582c215ce22ce199f012681c4cda4134f2ec2.zip |
Use centralized cmake version
Signed-off-by: Michele Calgaro <[email protected]>
-rw-r--r-- | CMakeL10n.txt | 6 | ||||
-rw-r--r-- | CMakeLists.txt | 11 |
2 files changed, 10 insertions, 7 deletions
diff --git a/CMakeL10n.txt b/CMakeL10n.txt index e0b1b56..0176702 100644 --- a/CMakeL10n.txt +++ b/CMakeL10n.txt @@ -9,7 +9,11 @@ # ################################################# -cmake_minimum_required( VERSION 3.5 ) + +##### set project version ######################## + +include( TDEVersion ) +cmake_minimum_required( VERSION ${TDE_CMAKE_MINIMUM_VERSION} ) ##### include our cmake modules ################# diff --git a/CMakeLists.txt b/CMakeLists.txt index 5098df9..7a95199 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -7,7 +7,11 @@ ############################################ -cmake_minimum_required( VERSION 3.5 ) +##### set project version ######################## + +include( TDEVersion ) +cmake_minimum_required( VERSION ${TDE_CMAKE_MINIMUM_VERSION} ) +tde_set_project_version( ) #### general package setup @@ -31,11 +35,6 @@ include( CheckCXXSourceCompiles ) include( TDEMacros ) -##### set version number ######################## - -tde_set_project_version( ) - - ##### setup install paths include( TDESetupPaths ) |