diff options
author | José Bollo <jose.bollo@iot.bzh> | 2019-09-19 14:53:32 +0200 |
---|---|---|
committer | José Bollo <jose.bollo@iot.bzh> | 2019-10-01 10:16:43 +0200 |
commit | 935c6e22ff9a07f49dee2b05cb3eba1722245bd0 (patch) | |
tree | a4451b99cecade7c7dc4bfc28e2fb7857c7a7417 | |
parent | fb8850ca1bb6b7dec0105ca4bf3f490079879068 (diff) |
Print warnings in yellow not red
Having a message written in red for warnings is
confusing when searching for an error in red.
Bug-AGL: SPEC-2843
Change-Id: Ic501b37a785acb60e6d3dfc83b0500a85b100dec
Signed-off-by: José Bollo <jose.bollo@iot.bzh>
-rw-r--r-- | src/cmake/cmake.d/02-variables.cmake | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/cmake/cmake.d/02-variables.cmake b/src/cmake/cmake.d/02-variables.cmake index 5c54db3..ed4aa3e 100644 --- a/src/cmake/cmake.d/02-variables.cmake +++ b/src/cmake/cmake.d/02-variables.cmake @@ -90,12 +90,12 @@ elseif(NOT PROJECT_VERSION AND VERSION) endif() if(NOT PROJECT_DESCRIPTION) - message(WARNING "${Red}No description found. Please set a PROJECT_DESCRIPTION cmake variable in your config.cmake.") + message(WARNING "${Yellow}No description found. Please set a PROJECT_DESCRIPTION cmake variable in your config.cmake.") set(PROJECT_DESCRIPTION "-") endif() if(NOT PROJECT_URL) - message(WARNING "${Red}No homepage url found. Please set a PROJECT_URL cmake variable in your config.cmake.") + message(WARNING "${Yellow}No homepage url found. Please set a PROJECT_URL cmake variable in your config.cmake.") endif() # Release additionnals informations isn't supported so setting project |