diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-03-15 11:19:41 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-03-15 23:50:44 +0900 |
commit | d65aac7f7ddffed10028a0121ef6d78c69618fff (patch) | |
tree | d1e8c9c256528b9574ffc5911bc03c3f9d719b3a | |
parent | 66444947195214b7899115293968653ef05f2b5d (diff) | |
download | tdegraphics-d65aac7f7ddffed10028a0121ef6d78c69618fff.tar.gz tdegraphics-d65aac7f7ddffed10028a0121ef6d78c69618fff.zip |
Use centralized cmake version
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
(cherry picked from commit 53c0b7bcf6c3e390b2e18af83d3979d302921efe)
-rw-r--r-- | CMakeL10n.txt | 7 | ||||
-rw-r--r-- | CMakeLists.txt | 12 |
2 files changed, 12 insertions, 7 deletions
diff --git a/CMakeL10n.txt b/CMakeL10n.txt index 826e7131..f0fc72d8 100644 --- a/CMakeL10n.txt +++ b/CMakeL10n.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( ) ##### include our cmake modules ################# diff --git a/CMakeLists.txt b/CMakeLists.txt index 31c19d2e..bbbe2214 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( CheckSymbolExists ) include( TDEMacros ) -##### set version number ######################## - -tde_set_project_version( ) - - ##### setup install paths ####################### include( TDESetupPaths ) |