diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2022-06-24 22:53:44 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2022-06-24 22:53:44 +0900 |
commit | cf298aba5762320747798e1ee31968af0ebc8c72 (patch) | |
tree | 290bfc892ced239861292cf114c2e76571bf7f44 | |
parent | b20b02ef182f7bbf14646e1c1cdbdfa0f62337d1 (diff) | |
download | tork-cf298aba5762320747798e1ee31968af0ebc8c72.tar.gz tork-cf298aba5762320747798e1ee31968af0ebc8c72.zip |
Use TDE cmake macro to set version
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
-rw-r--r-- | CMakeLists.txt | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index df33838..371b7c9 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -13,7 +13,6 @@ cmake_minimum_required( VERSION 3.1 ) #### general package setup project( tork ) -set( VERSION R14.1.0 ) #### include essential cmake modules @@ -34,6 +33,11 @@ include( CheckCXXSourceCompiles ) include( TDEMacros ) +##### set version number ######################## + +tde_set_project_version( ) + + ##### setup install paths include( TDESetupPaths ) |