cmake: assert: Reduce the verbosity of the assert warning

The warning about CONFIG_ASSERT being enabled is too loud. This patch
reduces it's verbosity and omits the explanation about performance as
this is believed to be obvious.

Signed-off-by: Sebastian Bøe <sebastian.boe@nordicsemi.no>
This commit is contained in:
Sebastian Bøe 2019-12-06 12:54:53 +01:00 committed by Alberto Escolar
parent 9d8f12b2dd
commit fa8f9d423d

View File

@ -1499,12 +1499,7 @@ add_subdirectory(cmake/reports)
if(NOT CONFIG_TEST)
if(CONFIG_ASSERT AND (NOT CONFIG_FORCE_NO_ASSERT))
message(WARNING "
------------------------------------------------------------
--- WARNING: __ASSERT() statements are globally ENABLED ---
--- The kernel will run more slowly and use more memory ---
------------------------------------------------------------"
)
message(WARNING "__ASSERT() statements are globally ENABLED")
endif()
endif()