diff options
author | Michele Calgaro <[email protected]> | 2022-06-21 20:52:31 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2022-06-21 20:52:31 +0900 |
commit | 1d7709e4256631ae70dcd071970a99a3841e86e0 (patch) | |
tree | f6c500b32660274a9b1ee77f6682e08273c949e6 /CMakeLists.txt | |
parent | 1f9f2bcfb70f0cfd3931d0f1a50c35176d77c218 (diff) | |
download | tdegraphics-1d7709e4256631ae70dcd071970a99a3841e86e0.tar.gz tdegraphics-1d7709e4256631ae70dcd071970a99a3841e86e0.zip |
Use TDE cmake macro to set version
Signed-off-by: Michele Calgaro <[email protected]>
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 e2e61f1a..c45d2b25 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -15,7 +15,6 @@ cmake_minimum_required( VERSION 3.1 ) ##### general package setup ##################### project( tdegraphics ) -set( VERSION R14.1.0 ) ##### include essential cmake modules ########### @@ -34,6 +33,11 @@ include( CheckSymbolExists ) include( TDEMacros ) +##### set version number ######################## + +tde_set_project_version( ) + + ##### setup install paths ####################### include( TDESetupPaths ) |