From b714481cd3c778407a20b0584e5dce5368c75ae3 Mon Sep 17 00:00:00 2001 From: Christian Muehlhaeuser Date: Sat, 2 Mar 2013 07:13:34 +0100 Subject: [PATCH] * Nicer cmake output. --- CMakeLists.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index fd22507e98..824930b645 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -111,7 +111,7 @@ endif() find_package(Qt5Core QUIET) if(Qt5Core_DIR) find_package(Qt5Widgets QUIET) - message(STATUS "Found Qt5! Please keep in mind, this is highly experimental and not our main development..") + message(STATUS "Found Qt5! Be aware that Qt5-support is still experimental and not officially supported!") macro(qt_wrap_ui) qt5_wrap_ui(${ARGN}) @@ -134,7 +134,7 @@ if(Qt5Core_DIR) set(WITH_CRASHREPORTER OFF) set(WITH_BREAKPAD OFF) else() - message(STATUS "Could not find Qt5, now searching for Qt4... you're better off this way!") + message(STATUS "Could not find Qt5, searching for Qt4 instead...") set(NEEDED_QT4_COMPONENTS "QtCore" "QtXml" "QtNetwork") if( BUILD_GUI )