diff options
author | Michele Calgaro <[email protected]> | 2024-03-15 11:22:36 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2024-03-15 20:56:12 +0900 |
commit | c0e37ab00518f8d0d609cf84f11c1423b27a02f4 (patch) | |
tree | a60ec6af1dc03bbb654ae1f51cdc320754d7781c | |
parent | fe52f8f3b0e2c7116b8c7b186a4466651d9bd869 (diff) | |
download | dbus-tqt-c0e37ab00518f8d0d609cf84f11c1423b27a02f4.tar.gz dbus-tqt-c0e37ab00518f8d0d609cf84f11c1423b27a02f4.zip |
Signed-off-by: Michele Calgaro <[email protected]>
(cherry picked from commit 20cbecd59f98a6293e8089379acbddc6c9eaa214)
-rw-r--r-- | CMakeLists.txt | 19 |
1 files changed, 11 insertions, 8 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 7eff7cb..37fea1c 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -9,12 +9,20 @@ # ################################################# -project( dbus-tqt-1 ) +##### set project version ######################## + +include( TDEVersion ) +cmake_minimum_required( VERSION ${TDE_CMAKE_MINIMUM_VERSION} ) +tde_set_project_version( ) + + +##### general package setup ##################### -##### cmake setup ############################### +project( dbus-tqt-1 ) -cmake_minimum_required( VERSION 3.5 ) + +##### include essential cmake modules ########### include( FindPkgConfig ) include( CheckCXXSourceCompiles ) @@ -24,11 +32,6 @@ include( TDEMacros ) include( ConfigureChecks.cmake ) -##### set version number ######################## - -tde_set_project_version( ) - - ##### install paths setup ####################### tde_setup_install_path( EXEC_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}" ) |