diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2022-06-21 23:38:36 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2022-06-21 23:38:36 +0900 |
commit | d3db71f97bc47789e335e32bb60f5a0823e2666c (patch) | |
tree | c7f617251e41b2b8d60585d42d489889deb0701d /CMakeLists.txt | |
parent | c81ebfdd9c97f1b9217728c267ec796744fa1b00 (diff) | |
download | tdevelop-d3db71f97bc47789e335e32bb60f5a0823e2666c.tar.gz tdevelop-d3db71f97bc47789e335e32bb60f5a0823e2666c.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 67f1b90d..e6a167ca 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -15,7 +15,6 @@ cmake_minimum_required( VERSION 3.1 ) ##### general package setup ##################### project( tdevelop ) -set( VERSION R14.1.0 ) ##### include essential cmake modules ########### @@ -35,6 +34,11 @@ include( FindPkgConfig ) include( TDEMacros ) +##### set version number ######################## + +tde_set_project_version( ) + + ##### setup install paths ####################### include( TDESetupPaths ) |