diff options
author | Romain Forlot <romain.forlot@iot.bzh> | 2017-05-28 13:35:45 +0200 |
---|---|---|
committer | Romain Forlot <romain.forlot@iot.bzh> | 2018-10-15 18:22:20 +0200 |
commit | 9c7f98f295524d742b1c51bba4d4bf08b7a22a1f (patch) | |
tree | 65ca74a9fce03baccf4ef502ee9a48edf5d1ab87 | |
parent | eab56607bbed89e694319ad9470338fd2eaf875b (diff) |
Adding colors in output messages.
Change-Id: Iad429f66156468098d8e7798c5cabed2481b92a4
Signed-off-by: Romain Forlot <romain.forlot@iot.bzh>
-rw-r--r-- | cmake/common.cmake | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cmake/common.cmake b/cmake/common.cmake index 9904692..afc8ce0 100644 --- a/cmake/common.cmake +++ b/cmake/common.cmake @@ -155,9 +155,9 @@ macro(remote_targets_populate) ) if(NOT RSYNC_TARGET OR NOT RSYNC_PREFIX) - message (".. Warning: RSYNC_TARGET RSYNC_PREFIX not defined 'make remote-target-populate' not instanciated") + message ("${Yellow}.. Warning: RSYNC_TARGET RSYNC_PREFIX not defined 'make remote-target-populate' not instanciated${ColourReset}") add_custom_target(remote-target-populate - COMMENT "*** Fatal: RSYNC_TARGET RSYNC_PREFIX required with 'make remote-target-populate'" + COMMENT "${Red}*** Fatal: RSYNC_TARGET RSYNC_PREFIX environment variables required with 'make remote-target-populate'${ColourReset}" COMMAND exit -1 ) else() |