cmake: Update messages mode using INFO to the correct mode STATUS

Search and replace `message(INFO " ` with `message(STATUS "`.
This would otherwise print "INFO <message"

Signed-off-by: Joakim Andersson <joakim.andersson@nordicsemi.no>
This commit is contained in:
Joakim Andersson 2021-12-15 09:28:09 +01:00 committed by Maureen Helm
commit 0f3169648b
10 changed files with 10 additions and 10 deletions

View file

@ -14,7 +14,7 @@ else()
message(FATAL_ERROR "${BOARD} is not supported for this sample")
endif()
message(INFO " ${BOARD} compile as Main in this sample")
message(STATUS "${BOARD} compile as Main in this sample")
find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE})
project(mbox_ipc)