From 88a5793cde73e5c4ef8960b8dfde9a6b6f24112c Mon Sep 17 00:00:00 2001 From: Michele Calgaro Date: Mon, 20 Jun 2022 19:24:16 +0900 Subject: [PATCH] Use TDE cmake macro to set version Signed-off-by: Michele Calgaro (cherry picked from commit 42183671a90b026ba54d269127bcd61ebb253786) --- CMakeLists.txt | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 5bc885b..08679ef 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -13,7 +13,6 @@ cmake_minimum_required( VERSION 3.1 ) #### general package setup project( libart-lgpl ) -set( VERSION R14.0.13 ) set( LIBART_VERSION 2.3.21 ) string( REPLACE "." ";" LIBART_VERSION_LIST ${LIBART_VERSION} ) @@ -36,6 +35,11 @@ include( CheckCSourceCompiles ) include( TDEMacros ) +##### set version number ######################## + +tde_set_project_version( ) + + ##### setup install paths include( TDESetupPaths )