diff options
author | Michele Calgaro <[email protected]> | 2022-06-22 16:27:21 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2022-06-22 16:27:30 +0900 |
commit | f05bd5b3fcd6f214ea860b18f612c1008d8578d4 (patch) | |
tree | d12220128cb4a970ce56ac45e4206f992a3dd84b /CMakeLists.txt | |
parent | 7c36af690c5f5562902ecdf57bbc1fc4f610dbd0 (diff) | |
download | klamav-f05bd5b3fcd6f214ea860b18f612c1008d8578d4.tar.gz klamav-f05bd5b3fcd6f214ea860b18f612c1008d8578d4.zip |
Use TDE cmake macro to set version
Signed-off-by: Michele Calgaro <[email protected]>
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 bb2189a..66d1d44 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -17,7 +17,6 @@ cmake_minimum_required( VERSION 3.1 ) ##### general package setup ##################### project( klamav ) -set( VERSION R14.1.0 ) ##### include essential cmake modules ########### @@ -36,6 +35,11 @@ include( CheckCXXSourceCompiles ) include( TDEMacros ) +##### set version number ######################## + +tde_set_project_version( ) + + ##### setup install paths ####################### include( TDESetupPaths ) |