diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-03-15 11:23:39 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-03-15 11:23:39 +0900 |
commit | 9a17082878978d775d1dd892b832dc2d3c49b5a6 (patch) | |
tree | 7da4485a4d6f90cab93990027a0cf5e775166c9b | |
parent | 145fb03d2e5d2009d40d347e2efc577d6920aae4 (diff) | |
download | tqca-9a17082878978d775d1dd892b832dc2d3c49b5a6.tar.gz tqca-9a17082878978d775d1dd892b832dc2d3c49b5a6.zip |
Use centralized cmake version
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
-rw-r--r-- | CMakeLists.txt | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 3a61475..ec953b9 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -7,7 +7,11 @@ ############################################ -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 @@ -32,11 +36,6 @@ include( GNUInstallDirs OPTIONAL ) include( TDEMacros ) -##### set version number ######################## - -tde_set_project_version( ) - - ##### setup install paths if( CMAKE_INSTALL_LIBDIR ) |