diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2022-06-21 19:55:25 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2022-06-21 19:56:22 +0900 |
commit | 6d608e37b80fa0f22e626033f90489b3233b7e75 (patch) | |
tree | c270fb910ea3bde08cae6f7a1b7f2555fab92821 | |
parent | 2fa15e0acb15959959d02efc1c89b907b2112523 (diff) | |
download | tdeartwork-6d608e37b80fa0f22e626033f90489b3233b7e75.tar.gz tdeartwork-6d608e37b80fa0f22e626033f90489b3233b7e75.zip |
Use TDE cmake macro to set version
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
(cherry picked from commit 64b27362f21b31ffb6f477568e100168c2f3beca)
-rw-r--r-- | CMakeLists.txt | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 97734fea..6bf675cd 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -17,7 +17,6 @@ cmake_minimum_required( VERSION 3.1 ) project( tdeartwork ) set( PACKAGE tdeartwork ) -set( VERSION R14.0.13 ) ##### include essential cmake modules @@ -34,6 +33,11 @@ include( CheckSymbolExists ) include( TDEMacros ) +##### set version number ######################## + +tde_set_project_version( ) + + ##### setup install paths include( TDESetupPaths ) |