diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2022-06-25 18:47:43 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2022-06-25 18:48:02 +0900 |
commit | 77beee6cafa70f864c61e647ca0597d0bd2719b5 (patch) | |
tree | 6f6fe29f482f590160e5736e4af1775f08f914b1 /CMakeLists.txt | |
parent | 1e2d2e88b33cb1e7155c58201d6a65ec0f3c8e55 (diff) | |
download | kmymoney-77beee6cafa70f864c61e647ca0597d0bd2719b5.tar.gz kmymoney-77beee6cafa70f864c61e647ca0597d0bd2719b5.zip |
Use TDE cmake macro to set version
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r-- | CMakeLists.txt | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 53fcdae..34ac986 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -13,7 +13,6 @@ cmake_minimum_required( VERSION 3.1 ) #### general package setup project( kmymoney2 ) -set( VERSION R14.1.0 ) set( APP_VERSION 1.0.5 ) @@ -34,6 +33,11 @@ include( TDEMacros ) include( kmm-macros.cmake ) +##### set version number ######################## + +tde_set_project_version( ) + + ##### setup install paths include( TDESetupPaths ) |