diff options
author | Michele Calgaro <[email protected]> | 2022-06-21 19:55:25 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2022-06-21 19:55:25 +0900 |
commit | 64b27362f21b31ffb6f477568e100168c2f3beca (patch) | |
tree | e89b72f3c469955bb71050917ddcf7be1acbb68a /CMakeLists.txt | |
parent | e8a1c77d138b7cd04de097a8ede82e01698b9ba5 (diff) | |
download | tdeartwork-64b27362f21b31ffb6f477568e100168c2f3beca.tar.gz tdeartwork-64b27362f21b31ffb6f477568e100168c2f3beca.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 573f56ff..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.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 ) |