2013-08-13 05:35:58 +01:00
|
|
|
find_package(KDE4 REQUIRED)
|
2013-08-31 12:04:00 +01:00
|
|
|
find_package(QJSON REQUIRED)
|
|
|
|
find_package(QCA2 REQUIRED)
|
|
|
|
|
2013-09-01 21:13:03 +01:00
|
|
|
include_directories(
|
|
|
|
${QJSON_INCLUDE_DIR}
|
|
|
|
${QCA2_INCLUDE_DIR}
|
|
|
|
)
|
|
|
|
|
2013-08-31 12:04:00 +01:00
|
|
|
include(KDE4Defaults)
|
2013-08-13 05:35:58 +01:00
|
|
|
include_directories(${KDE4_INCLUDES})
|
|
|
|
|
|
|
|
set(kdeconnect_mpriscontrol_SRCS
|
|
|
|
mpriscontrolplugin.cpp
|
|
|
|
../kdeconnectplugin.cpp
|
|
|
|
../pluginloader.cpp
|
|
|
|
../../networkpackage.cpp
|
|
|
|
../../device.cpp
|
|
|
|
)
|
|
|
|
|
|
|
|
qt4_add_dbus_interface(
|
|
|
|
kdeconnect_mpriscontrol_SRCS
|
|
|
|
mprisdbusinterface.xml
|
|
|
|
mprisdbusinterface
|
|
|
|
)
|
|
|
|
|
|
|
|
qt4_add_dbus_interface(
|
|
|
|
kdeconnect_mpriscontrol_SRCS
|
|
|
|
propertiesInterface.xml
|
|
|
|
propertiesdbusinterface
|
|
|
|
)
|
|
|
|
|
|
|
|
kde4_add_plugin(kdeconnect_mpriscontrol ${kdeconnect_mpriscontrol_SRCS})
|
|
|
|
|
|
|
|
target_link_libraries(kdeconnect_mpriscontrol
|
|
|
|
${KDE4_KDECORE_LIBS}
|
|
|
|
${KDE4_KDEUI_LIBS}
|
|
|
|
${QT_QTNETWORK_LIBRARY}
|
2013-08-31 12:04:00 +01:00
|
|
|
${QJSON_LIBRARIES}
|
|
|
|
${QCA2_LIBRARIES}
|
2013-08-13 05:35:58 +01:00
|
|
|
)
|
|
|
|
|
|
|
|
install(TARGETS kdeconnect_mpriscontrol DESTINATION ${PLUGIN_INSTALL_DIR} )
|
|
|
|
install(FILES kdeconnect_mpriscontrol.desktop DESTINATION ${SERVICES_INSTALL_DIR} )
|
|
|
|
|