diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2022-06-24 17:02:32 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2022-06-24 17:03:42 +0900 |
commit | 9ceef08cc8779343115bf2d4bdb6bcc88eb93107 (patch) | |
tree | 2e7ca357bb7d473ed23d5a36e10bcbe118db807c | |
parent | 5daa9bc059a3553399db7373f79d0adbc642bef6 (diff) | |
download | kdbg-9ceef08cc8779343115bf2d4bdb6bcc88eb93107.tar.gz kdbg-9ceef08cc8779343115bf2d4bdb6bcc88eb93107.zip |
Use TDE cmake macro to set version
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
(cherry picked from commit b0f1887ca04ba6846d2145ce5098e0552f7c5832)
-rw-r--r-- | CMakeLists.txt | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 37180e6..44f6c76 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -13,7 +13,6 @@ cmake_minimum_required( VERSION 3.1 ) #### general package setup project( kdbg ) -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 ) |