diff options
author | Michele Calgaro <[email protected]> | 2024-03-15 11:06:32 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2024-03-17 11:01:16 +0900 |
commit | bd6c8dc6786aeb17c167af81fd495400d990702c (patch) | |
tree | 8fb386255ce88d85bf87d32f9beb318fa79ec9b2 /CMakeLists.txt | |
parent | 0afc7ddb4714dd26179d283cf9c0cabc00ccb2a5 (diff) | |
download | kbfx-bd6c8dc6786aeb17c167af81fd495400d990702c.tar.gz kbfx-bd6c8dc6786aeb17c167af81fd495400d990702c.zip |
Use centralized cmake version
Signed-off-by: Michele Calgaro <[email protected]>
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 b7a3f0e..4b12f87 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 ) |