From 9f5336c4e5ad6175114ecf1495d60f63003b2216 Mon Sep 17 00:00:00 2001 From: Harald Sitter Date: Wed, 12 Sep 2012 18:10:28 +0200 Subject: [PATCH 08/12] not finding qtdbus is really a proper warning, not a status message --- cmake/FindPhononInternal.cmake | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/cmake/FindPhononInternal.cmake b/cmake/FindPhononInternal.cmake index 1e9edb0..de7f6ea 100644 --- a/cmake/FindPhononInternal.cmake +++ b/cmake/FindPhononInternal.cmake @@ -68,9 +68,9 @@ endif (${QT_MIN_VERSION} VERSION_LESS "4.6.0") find_package(Qt4 ${_REQ_STRING_KDE4}) # TODO: do we want this here? -if (NOT QT_QTDBUS_FOUND) - message(STATUS "Warning: Building without DBus support as QtDBus was not found.") -endif(NOT QT_QTDBUS_FOUND) +if (QT_QTDBUS_FOUND) + message(WARNING "Building without DBus support as QtDBus was not found.") +endif(QT_QTDBUS_FOUND) # - Automoc -- 1.8.3.1