diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2022-06-24 17:16:17 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2022-06-24 17:16:17 +0900 |
commit | d2386cd0f8906a667ce97f788995442cd24d62aa (patch) | |
tree | 9dd9af8a5f6abc942bcab3abec15ef68c4dbe769 /CMakeLists.txt | |
parent | 28a88e661c993673dc965aa749901d534da30fb8 (diff) | |
download | ktechlab-d2386cd0f8906a667ce97f788995442cd24d62aa.tar.gz ktechlab-d2386cd0f8906a667ce97f788995442cd24d62aa.zip |
Use TDE cmake macro to set version
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
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 e8fcf7c..0656a3e 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -13,7 +13,6 @@ cmake_minimum_required( VERSION 3.1 ) #### general package setup project( ktechlab ) -set( VERSION R14.1.0 ) #### include essential cmake modules @@ -33,6 +32,11 @@ include( CheckCXXSourceCompiles ) include( TDEMacros ) +##### set version number ######################## + +tde_set_project_version( ) + + ##### setup install paths include( TDESetupPaths ) |