Fix dbus tqt check

git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/kpowersave@1228275 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
pull/1/head
tpearson 13 years ago
parent fb164a2de2
commit 51d2a91984

@ -49,22 +49,22 @@ find_package( TQt )
find_package( TDE )
# check for dbus-1
pkg_search_module( DBUS dbus-1 )
if( NOT DBUS_FOUND )
tde_message_fatal( "dbus-1 are required, but not found on your system" )
tde_message_fatal( "dbus-1 is required, but was not found on your system" )
endif( )
# check for dbus-qt3 (version 0.7)
# check for dbus-tqt
tde_save( CMAKE_REQUIRED_INCLUDES CMAKE_REQUIRED_LIBRARIES )
set( CMAKE_REQUIRED_INCLUDES ${QT_INCLUDE_DIRS} ${DBUS_INCLUDE_DIRS} )
set( CMAKE_REQUIRED_INCLUDES ${QT_INCLUDE_DIRS} ${TQT_INCLUDE_DIRS} ${DBUS_INCLUDE_DIRS} )
set( CMAKE_REQUIRED_LIBRARIES ${TQT_LDFLAGS} )
check_cxx_source_compiles("
#include <tqt.h>
#include <dbus/connection.h>
int main(int, char**) { return 0; } "
HAVE_DBUS_QT3_07 )
tde_restore( CMAKE_REQUIRED_INCLUDES CMAKE_REQUIRED_LIBRARIES )
if( NOT HAVE_DBUS_QT3_07 )
tde_message_fatal( "dbus-qt3 (version 0.7) are required, but not found on your system" )
tde_message_fatal( "dbus-tqt is required, but was not found on your system" )
endif( )

Loading…
Cancel
Save