975892dcd0
Device now has a public dbus interface Removed wizard from kcm: now the main list shows all the devices and you can pair/unpair using a checkbox Both Kde and Android now use unique device ids
32 lines
684 B
CMake
32 lines
684 B
CMake
|
|
set(kcm_SRCS devicesmodel.cpp
|
|
kcm.cpp
|
|
#wizard.cpp
|
|
dbusinterfaces.cpp
|
|
)
|
|
|
|
qt4_add_dbus_interface(
|
|
kcm_SRCS
|
|
${CMAKE_BINARY_DIR}/daemon/org.kde.kdeconnect.xml
|
|
daemoninterface
|
|
)
|
|
qt4_add_dbus_interface(
|
|
kcm_SRCS
|
|
${CMAKE_BINARY_DIR}/daemon/org.kde.kdeconnect.device.xml
|
|
deviceinterface
|
|
)
|
|
|
|
kde4_add_ui_files(kcm_SRCS kcm.ui wizard.ui)
|
|
|
|
kde4_add_plugin(kcm_kdeconnect ${kcm_SRCS})
|
|
|
|
target_link_libraries(kcm_kdeconnect
|
|
${QT_QTCORE_LIBRARY}
|
|
${QT_QTGUI_LIBRARY}
|
|
${KDE4_KDEUI_LIBRARY}
|
|
${KDE4_KIO_LIBRARY}
|
|
)
|
|
|
|
install(TARGETS kcm_kdeconnect DESTINATION ${PLUGIN_INSTALL_DIR})
|
|
|
|
install(FILES kcm_kdeconnect.desktop DESTINATION ${SERVICES_INSTALL_DIR})
|