diff options
author | Michele Calgaro <[email protected]> | 2022-06-24 22:53:44 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2022-06-24 22:54:10 +0900 |
commit | 1055aabc8bbd1d508bdbf97a850109850e202955 (patch) | |
tree | 4ddc4d2013f393e3021bfb01661c116d223fc264 | |
parent | f5a356f6a6dcdd86b6928dfe4dc5e69335ab3c6e (diff) | |
download | tork-1055aabc8bbd1d508bdbf97a850109850e202955.tar.gz tork-1055aabc8bbd1d508bdbf97a850109850e202955.zip |
Use TDE cmake macro to set version
Signed-off-by: Michele Calgaro <[email protected]>
(cherry picked from commit cf298aba5762320747798e1ee31968af0ebc8c72)
-rw-r--r-- | CMakeLists.txt | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index da01cdb..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.0.13 ) #### include essential cmake modules @@ -34,6 +33,11 @@ include( CheckCXXSourceCompiles ) include( TDEMacros ) +##### set version number ######################## + +tde_set_project_version( ) + + ##### setup install paths include( TDESetupPaths ) |