diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2022-06-23 14:19:32 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2022-06-23 14:19:32 +0900 |
commit | 4fe9f77f06ebbeba9e8a836572a8a4f15c655918 (patch) | |
tree | 7624f6360acf48e38e5c5dfc297a13c606cc4ed6 | |
parent | 047a11b3ec51c0cfadbf8f17dbbadb73764826d7 (diff) | |
download | kompose-4fe9f77f06ebbeba9e8a836572a8a4f15c655918.tar.gz kompose-4fe9f77f06ebbeba9e8a836572a8a4f15c655918.zip |
Use TDE cmake macro to set version
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
-rw-r--r-- | CMakeLists.txt | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index aad4d19..4a3473c 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -17,7 +17,6 @@ cmake_minimum_required( VERSION 3.1 ) ##### general package setup ##################### project( kompose ) -set( VERSION R14.1.0 ) ##### include essential cmake modules ########### @@ -36,6 +35,11 @@ include( CheckCXXSourceCompiles ) include( TDEMacros ) +##### set version number ######################## + +tde_set_project_version( ) + + ##### setup install paths ####################### include( TDESetupPaths ) |