aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRomain Forlot <romain.forlot@iot.bzh>2017-11-23 19:21:23 +0100
committerRomain Forlot <romain.forlot@iot.bzh>2017-11-23 19:21:23 +0100
commit0487d4437607155c619bcb662aac3fd32a101824 (patch)
tree13a4202799e9381a02d3a677a0aa11053f33d654
parent7dabdeb9c967993167b93860cac4b79a94f27401 (diff)
Compare to manual Project version if not from git
Change-Id: I7e83d2e587757edf5cfa22709ead85ce82f52dcc Signed-off-by: Romain Forlot <romain.forlot@iot.bzh>
-rw-r--r--cmake/cmake.d/03-macros.cmake7
1 files changed, 7 insertions, 0 deletions
diff --git a/cmake/cmake.d/03-macros.cmake b/cmake/cmake.d/03-macros.cmake
index aef5498..2de89f3 100644
--- a/cmake/cmake.d/03-macros.cmake
+++ b/cmake/cmake.d/03-macros.cmake
@@ -543,6 +543,13 @@ macro(check_version)
- Project version according AGL Git tag: ${GIT_PROJECT_VERSION}"
)
endif()
+ elseif(${PROJECT_VERSION})
+ if(${PROJECT_VERSION} VERSION_GREATER ${APP_TEMPLATES_VERSION})
+ message(STATUS "${Yellow}.. Your app-templates submodule version seems outdated. You should update it with 'git submodule update --remote ${PROJECT_APP_TEMPLATES_DIR}'.
+ - App-templates version: ${APP_TEMPLATES_VERSION}
+ - Project version according AGL Git tag: ${PROJECT_VERSION}"
+ )
+ endif()
else()
message(STATUS "${Yellow} Your git project repo doesn't have any version tags nor hosted by AGL gerrit infrastructure. Can't compare version between project and app-templates ${APP_TEMPLATES_VERSION} ${ColourReset}")
endif()