diff options
author | Michele Calgaro <[email protected]> | 2024-03-15 11:06:09 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2024-03-17 10:59:13 +0900 |
commit | 4c8da11d03695932882b725be97a44cc7d36fbc9 (patch) | |
tree | 1ee0b3b43fc1a9131fa71f90a3a878d745245971 | |
parent | b6a6add74604acca300406e93712f45a84946856 (diff) | |
download | dolphin-4c8da11d03695932882b725be97a44cc7d36fbc9.tar.gz dolphin-4c8da11d03695932882b725be97a44cc7d36fbc9.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 49892df..4606279 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 @@ include( FindPkgConfig ) include( TDEMacros ) -##### set version number ######################## - -tde_set_project_version( ) - - ##### setup install paths ####################### include( TDESetupPaths ) |