diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2022-06-24 22:51:41 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2022-06-24 22:52:07 +0900 |
commit | a0ff810ae65bb017d96bb42044b7bc2b77e5ec00 (patch) | |
tree | 381317c67426f6d9b9487bd9f98bbb4ac19ec187 | |
parent | 6965e59c5e6321509950afe800a91b01f3a1ac12 (diff) | |
download | kvpnc-a0ff810ae65bb017d96bb42044b7bc2b77e5ec00.tar.gz kvpnc-a0ff810ae65bb017d96bb42044b7bc2b77e5ec00.zip |
Use TDE cmake macro to set version
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
(cherry picked from commit be4246c8187d8ab5929aa948a31506aca121d246)
-rw-r--r-- | CMakeLists.txt | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index dfc1ad9..9e659b9 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -13,7 +13,6 @@ cmake_minimum_required( VERSION 3.1 ) #### general package setup project( kvpnc ) -set( VERSION R14.0.13 ) #### include essential cmake modules @@ -32,6 +31,11 @@ include( CheckCXXSourceCompiles ) include( TDEMacros ) +##### set version number ######################## + +tde_set_project_version( ) + + ##### setup install paths include( TDESetupPaths ) |