diff options
author | Michele Calgaro <[email protected]> | 2024-03-15 11:03:39 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2024-03-17 21:24:39 +0900 |
commit | e9d5333939eac23ac34ea20c8de5ca92171f6c14 (patch) | |
tree | ec1af1eb747c0311c316ed2158534c0b4206a28b | |
parent | 031143c754a9709533c99d796ba563ad59c9178f (diff) | |
download | kpilot-e9d5333939eac23ac34ea20c8de5ca92171f6c14.tar.gz kpilot-e9d5333939eac23ac34ea20c8de5ca92171f6c14.zip |
Use centralized cmake version
Signed-off-by: Michele Calgaro <[email protected]>
(cherry picked from commit 0f442f8a9d00c9e1ee2e3e87f94a7e4a4a4a4eaa)
-rw-r--r-- | CMakeL10n.txt | 6 | ||||
-rw-r--r-- | CMakeLists.txt | 12 |
2 files changed, 11 insertions, 7 deletions
diff --git a/CMakeL10n.txt b/CMakeL10n.txt index a409cda..75742bf 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 25b05c6..e26f890 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -9,7 +9,12 @@ # ################################################# -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 ###################### @@ -33,11 +38,6 @@ enable_testing( ) include( TDEMacros ) -##### set version number ######################## - -tde_set_project_version( ) - - ##### setup install paths ####################### include( TDESetupPaths ) |