From 6e28178c22c5b224d857fb20fe90cc63162da6d6 Mon Sep 17 00:00:00 2001 From: wmayer Date: Sun, 31 Mar 2019 10:29:00 +0200 Subject: [PATCH] use STATUS in message command as otherwise in the GUI of cmake output will be in red and thus might be confusing --- CMakeLists.txt | 6 +++--- cMake/FindCoin3D.cmake | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 08596566f8..f92c331856 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -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}]") diff --git a/cMake/FindCoin3D.cmake b/cMake/FindCoin3D.cmake index 9dc107b76e..08659ea5e9 100644 --- a/cMake/FindCoin3D.cmake +++ b/cMake/FindCoin3D.cmake @@ -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)