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:
parent
f7c2f4fd94
commit
0f3169648b
10 changed files with 10 additions and 10 deletions
|
@ -14,7 +14,7 @@ else()
|
|||
message(FATAL_ERROR "${BOARD} was not supported for this sample")
|
||||
endif()
|
||||
|
||||
message(INFO " ${BOARD} compile as Master in this sample")
|
||||
message(STATUS "${BOARD} compile as Master in this sample")
|
||||
|
||||
find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE})
|
||||
project(ipm_mcux)
|
||||
|
|
|
@ -6,7 +6,7 @@ cmake_minimum_required(VERSION 3.20.0)
|
|||
|
||||
if(("${BOARD}" STREQUAL "lpcxpresso54114_m0")
|
||||
OR "${BOARD}" STREQUAL "lpcxpresso55s69_cpu1")
|
||||
message(INFO " ${BOARD} compiles as remote in this sample")
|
||||
message(STATUS "${BOARD} compiles as remote in this sample")
|
||||
else()
|
||||
message(FATAL_ERROR "${BOARD} was not supported for this sample")
|
||||
endif()
|
||||
|
|
|
@ -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)
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
cmake_minimum_required(VERSION 3.20.0)
|
||||
|
||||
if("${BOARD}" STREQUAL "nrf5340dk_nrf5340_cpunet")
|
||||
message(INFO " ${BOARD} compile as remote in this sample")
|
||||
message(STATUS "${BOARD} compile as remote in this sample")
|
||||
else()
|
||||
message(FATAL_ERROR "${BOARD} is not supported for this sample")
|
||||
endif()
|
||||
|
|
|
@ -15,7 +15,7 @@ else()
|
|||
message(FATAL_ERROR "${BOARD} is not supported for this sample")
|
||||
endif()
|
||||
|
||||
message(INFO " ${BOARD} compile as Master in this sample")
|
||||
message(STATUS "${BOARD} compile as Master in this sample")
|
||||
|
||||
find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE})
|
||||
project(ipc_service)
|
||||
|
|
|
@ -7,7 +7,7 @@ cmake_minimum_required(VERSION 3.20.0)
|
|||
|
||||
if("${BOARD}" STREQUAL "nrf5340dk_nrf5340_cpunet"
|
||||
OR "${BOARD}" STREQUAL "bl5340_dvk_cpunet")
|
||||
message(INFO " ${BOARD} compile as slave in this sample")
|
||||
message(STATUS "${BOARD} compile as slave in this sample")
|
||||
else()
|
||||
message(FATAL_ERROR "${BOARD} is not supported for this sample")
|
||||
endif()
|
||||
|
|
|
@ -20,7 +20,7 @@ else()
|
|||
message(FATAL_ERROR "${BOARD} was not supported for this sample")
|
||||
endif()
|
||||
|
||||
message(INFO " ${BOARD} compile as Master in this sample")
|
||||
message(STATUS "${BOARD} compile as Master in this sample")
|
||||
|
||||
find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE})
|
||||
project(openamp)
|
||||
|
|
|
@ -9,7 +9,7 @@ if(("${BOARD}" STREQUAL "lpcxpresso54114_m0")
|
|||
OR "${BOARD}" STREQUAL "lpcxpresso55s69_cpu1"
|
||||
OR "${BOARD}" STREQUAL "mps2_an521_remote"
|
||||
OR "${BOARD}" STREQUAL "v2m_musca_b1_ns")
|
||||
message(INFO " ${BOARD} compiles as remote in this sample")
|
||||
message(STATUS "${BOARD} compiles as remote in this sample")
|
||||
else()
|
||||
message(FATAL_ERROR "${BOARD} was not supported for this sample")
|
||||
endif()
|
||||
|
|
|
@ -22,7 +22,7 @@ else()
|
|||
message(FATAL_ERROR "${BOARD} was not supported for this sample")
|
||||
endif()
|
||||
|
||||
message(INFO " ${BOARD} compile as Master in this sample")
|
||||
message(STATUS "${BOARD} compile as Master in this sample")
|
||||
|
||||
find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE})
|
||||
project(rpmsg_service)
|
||||
|
|
|
@ -10,7 +10,7 @@ if("${BOARD}" STREQUAL "nrf5340dk_nrf5340_cpunet"
|
|||
OR "${BOARD}" STREQUAL "lpcxpresso54114_m0"
|
||||
OR "${BOARD}" STREQUAL "mps2_an521_remote"
|
||||
OR "${BOARD}" STREQUAL "v2m_musca_b1_ns")
|
||||
message(INFO " ${BOARD} compile as slave in this sample")
|
||||
message(STATUS "${BOARD} compile as slave in this sample")
|
||||
else()
|
||||
message(FATAL_ERROR "${BOARD} was not supported for this sample")
|
||||
endif()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue