use STATUS in message command as otherwise in the GUI of cmake output will be in red and thus might be confusing

This commit is contained in:
wmayer
2019-03-31 10:29:00 +02:00
parent 82cb0dac8c
commit 6e28178c22
2 changed files with 4 additions and 4 deletions

View File

@@ -1234,9 +1234,9 @@ endif(CMAKE_COMPILER_IS_GNUCXX OR MINGW)
# -------------------------------- The final report ----------------------------------
MESSAGE("==============\n"
"Summary report\n"
"==============\n")
MESSAGE(STATUS "==============\n"
"Summary report\n"
"==============\n")
# Qt5 needs/sets PYTHON_CONFIG_SUFFIX regarding Shiboken
MESSAGE(STATUS "Python: [${PYTHON_EXECUTABLE}] [${PYTHON_CONFIG_SUFFIX}]")

View File

@@ -104,6 +104,6 @@ ENDIF (WIN32)
IF(COIN3D_LIBRARIES)
SET( COIN3D_FOUND "YES" )
message("COIN3D Libraries found")
message(STATUS "Coin3D libraries found")
ENDIF(COIN3D_LIBRARIES)