diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2022-06-25 19:06:31 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2022-06-25 19:07:11 +0900 |
commit | 543a2394531b02562e65d25beb271de890084889 (patch) | |
tree | 5f912083037e0a47c705112408188fd6c070c37b | |
parent | f01b659187d5bca7da8d776b954ce2e80e4f3645 (diff) | |
download | tellico-543a2394531b02562e65d25beb271de890084889.tar.gz tellico-543a2394531b02562e65d25beb271de890084889.zip |
Use TDE cmake macro to set version
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
(cherry picked from commit c243009e07c9e21e2cd04e40f1903ad6305ece56)
-rw-r--r-- | CMakeLists.txt | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 0bc08d6..620e59a 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -15,7 +15,7 @@ cmake_minimum_required( VERSION 3.1 ) ##### general package setup ##################### project( tellico ) -set( VERSION R14.0.13 ) +set( PACKAGE_VERSION 1.3.6 ) ##### include essential cmake modules ########### @@ -37,6 +37,11 @@ enable_testing() include( TDEMacros ) +##### set version number ######################## + +tde_set_project_version( ) + + ##### setup install paths ####################### include( TDESetupPaths ) |