diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-03-13 12:34:59 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-03-13 12:52:16 +0900 |
commit | 84c135c77562c89519707cdbb4504db54d9fda38 (patch) | |
tree | 1166282734219bbe92ab1d0503a8d0d873885118 /CMakeLists.txt | |
parent | fb3d13c23bf3cc67b910174f9966581b80638f02 (diff) | |
download | abakus-84c135c77562c89519707cdbb4504db54d9fda38.tar.gz abakus-84c135c77562c89519707cdbb4504db54d9fda38.zip |
Use centralized cmake version
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r-- | CMakeLists.txt | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index e45bebb..9733f87 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 ) |