diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-03-15 11:21:18 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-03-15 23:51:22 +0900 |
commit | 75fa7e080196c9351c24e90ba842f74167a52031 (patch) | |
tree | 26669f505686c6288e26122fdcbf30174831cc9f | |
parent | 43a8c03e8325e28bbab2034a3c5252bc15fb7709 (diff) | |
download | tdeutils-75fa7e080196c9351c24e90ba842f74167a52031.tar.gz tdeutils-75fa7e080196c9351c24e90ba842f74167a52031.zip |
Use centralized cmake version
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
(cherry picked from commit a9320890644ada19a52e566c1aa2e84b83bc85f1)
-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 f6147a5..4caef82 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 c84caa7..947d57e 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 ##################### @@ -37,11 +42,6 @@ include( CheckTypeSize ) include( TDEMacros ) -##### set version number ######################## - -tde_set_project_version( ) - - ##### setup install paths ####################### include( TDESetupPaths ) |