aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJosé Bollo <jose.bollo@iot.bzh>2018-09-12 14:32:06 +0200
committerJosé Bollo <jose.bollo@iot.bzh>2018-09-13 14:34:54 +0200
commitb2329b78526e1a219c9d955b514e202b4e25c97e (patch)
treeebd89b945b7df5c821373365ee12e1cde2f4db64
parentc152727a73c55782b6ffb65add51d03da5ff8e3b (diff)
CMakeLists: Use AGLVERSION if set
And default the version to the next version of AGL pre-guppy: 6.90.0 Change-Id: Ia86295efd42f42dd302aa61f072b325afa60e56c Signed-off-by: José Bollo <jose.bollo@iot.bzh>
-rw-r--r--CMakeLists.txt3
1 files changed, 2 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 95ec000..e3732ae 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -26,7 +26,8 @@ include(CTest)
set(PROJECT_NAME "AFM Main")
set(PROJECT_PRETTY_NAME "Application Framework Main")
set(PROJECT_DESCRIPTION "Secured Application framework for Automotive Grade Linux")
-set(PROJECT_VERSION "5.99.FFRC6")
+set(AGLVERSION "6.90.0" CACHE STRING "Version of AGL")
+set(PROJECT_VERSION ${AGLVERSION} CACHE STRING "Version of the project can override AGLVERSION")
set(PROJECT_URL "https://gerrit.automotivelinux.org/gerrit/gitweb?p=src/app-framework-main.git;a=summary")
set(USE_LIBZIP ON CACHE BOOL "should try to use libzip?")