diff options
Diffstat (limited to 'ConfigureChecks.cmake')
-rw-r--r-- | ConfigureChecks.cmake | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/ConfigureChecks.cmake b/ConfigureChecks.cmake index 0d7047c52..16ee5caad 100644 --- a/ConfigureChecks.cmake +++ b/ConfigureChecks.cmake @@ -34,6 +34,12 @@ if( NOT POLKIT_AGENT_FOUND ) tde_message_fatal( "polkit-agent-1 is required, but was not found on your system" ) endif( ) +# check for dbus-1-tqt +pkg_search_module( DBUS_TQT dbus-1-tqt ) +if( NOT DBUS_TQT_FOUND ) + tde_message_fatal( "dbus-1-tqt is required, but was not found on your system" ) +endif( ) + # gcc visibility if( WITH_GCC_VISIBILITY ) tde_setup_gcc_visibility( ) |