X-Git-Url: https://gerrit.automotivelinux.org/gerrit/gitweb?a=blobdiff_plain;f=cmake%2Fcmake.d%2F03-macros.cmake;h=207e85a96da2a6968f41be32c3fff44397175604;hb=dc4debf13f6653163ea969ec57945edd9545c748;hp=aef5498b3b96a960ddf8a4cda069bd792a601f25;hpb=7dabdeb9c967993167b93860cac4b79a94f27401;p=apps%2Fapp-templates.git diff --git a/cmake/cmake.d/03-macros.cmake b/cmake/cmake.d/03-macros.cmake index aef5498..207e85a 100644 --- a/cmake/cmake.d/03-macros.cmake +++ b/cmake/cmake.d/03-macros.cmake @@ -536,13 +536,20 @@ macro(project_closing_msg) endmacro() macro(check_version) - if(${GIT_PROJECT_VERSION}) + if(GIT_PROJECT_VERSION) if(${GIT_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: ${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()