diff options
author | Romain Forlot <romain.forlot@iot.bzh> | 2017-05-17 18:43:49 +0200 |
---|---|---|
committer | Romain Forlot <romain.forlot@iot.bzh> | 2018-10-15 18:22:20 +0200 |
commit | 6daf741824b7c6e1c60b7a26fc91c454876f7392 (patch) | |
tree | ae8d799901525483854d155b71c1c405055a799b /templates/native/etc | |
parent | 1f5b3784367fa244ee5b7cf1bbbb3febf993854f (diff) |
Update template to the reference
Change-Id: I32b9911fa0f8b294e3f38ce88de2ed58a9b57c71
Signed-off-by: Romain Forlot <romain.forlot@iot.bzh>
Diffstat (limited to 'templates/native/etc')
-rw-r--r-- | templates/native/etc/config.cmake | 2 | ||||
-rw-r--r-- | templates/native/etc/macros.cmake | 4 |
2 files changed, 4 insertions, 2 deletions
diff --git a/templates/native/etc/config.cmake b/templates/native/etc/config.cmake index 1c8607e..4e9ac5c 100644 --- a/templates/native/etc/config.cmake +++ b/templates/native/etc/config.cmake @@ -18,7 +18,7 @@ # Project Info # ------------------ -set(NAME native-example) +set(PROJECT_NAME native-example) set(VERSION "0.0") set(PROJECT_PRETTY_NAME "Native Example") set(PROJECT_DESCRIPTION "Native AGL application example") diff --git a/templates/native/etc/macros.cmake b/templates/native/etc/macros.cmake index 5514679..18af27e 100644 --- a/templates/native/etc/macros.cmake +++ b/templates/native/etc/macros.cmake @@ -47,6 +47,7 @@ endmacro(defstr) # WGT packaging macro(project_targets_populate) add_custom_target(MAIN_POPULATE) + get_property(PROJECT_TARGETS GLOBAL PROPERTY PROJECT_TARGETS) foreach(TARGET ${PROJECT_TARGETS}) get_target_property(T ${TARGET} LABELS) if(T) @@ -250,8 +251,9 @@ endif() # Print developer helper message when build is done # ------------------------------------------------------- macro(project_closing_msg) + get_property(PROJECT_TARGETS_SET GLOBAL PROPERTY PROJECT_TARGETS SET) get_property(PROJECT_TARGETS GLOBAL PROPERTY PROJECT_TARGETS) - if(CLOSING_MESSAGE AND ${PROJECT_TARGETS}) + if(CLOSING_MESSAGE AND ${PROJECT_TARGETS_SET}) add_custom_target(${PROJECT_NAME}_build_done ALL COMMAND ${CMAKE_COMMAND} -E cmake_echo_color --cyan "++ ${CLOSING_MESSAGE}" ) |