diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2022-06-21 20:37:55 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2022-06-21 20:37:55 +0900 |
commit | 50874d46964cb3f04fd5c37f7a9bd5bd447a34a1 (patch) | |
tree | 91a25251c8505d00a98813f1284f85e913ee6572 /CMakeLists.txt | |
parent | bd1bead1d53c74e80b9f92f36d8eef18ac06fe50 (diff) | |
download | tdeedu-50874d46964cb3f04fd5c37f7a9bd5bd447a34a1.tar.gz tdeedu-50874d46964cb3f04fd5c37f7a9bd5bd447a34a1.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 5c93272d..907e18cd 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -13,7 +13,6 @@ cmake_minimum_required( VERSION 3.1 ) #### general package setup project( tdeedu ) -set( VERSION R14.1.0 ) #### include essential cmake modules @@ -33,6 +32,11 @@ include( TDEMacros ) enable_testing( ) +##### set version number ######################## + +tde_set_project_version( ) + + ##### setup install paths include( TDESetupPaths ) |