diff options
author | Michele Calgaro <[email protected]> | 2024-03-15 11:05:57 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2024-03-17 11:19:20 +0900 |
commit | 81d0f90b24db6d98545a5a78110aef400f9c8232 (patch) | |
tree | b1cc295e40376ed2e41edc5992ce281fc173b18a | |
parent | ce4a1359711b176adbfe2867d87fb98a00ee68ec (diff) | |
download | wlassistant-81d0f90b24db6d98545a5a78110aef400f9c8232.tar.gz wlassistant-81d0f90b24db6d98545a5a78110aef400f9c8232.zip |
Use centralized cmake version
Signed-off-by: Michele Calgaro <[email protected]>
-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 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 2664c32..573780e 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 ##################### @@ -34,11 +39,6 @@ include( FindPkgConfig ) include( TDEMacros ) -##### set version number ######################## - -tde_set_project_version( ) - - ##### setup install paths ####################### include( TDESetupPaths ) |