kdeconnect-kde/daemon/CMakeLists.txt

74 lines
1.8 KiB
CMake
Raw Normal View History

set(kded_kdeconnect_SRCS
2013-06-19 12:29:24 +01:00
linkproviders/linkprovider.cpp
linkproviders/loopbacklinkprovider.cpp
#linkproviders/avahitcplinkprovider.cpp
2013-08-07 10:29:56 +01:00
linkproviders/broadcasttcplinkprovider.cpp
2013-06-19 12:29:24 +01:00
devicelinks/devicelink.cpp
2013-06-19 12:29:24 +01:00
devicelinks/echodevicelink.cpp
devicelinks/tcpdevicelink.cpp
2013-06-19 12:29:24 +01:00
plugins/packageinterface.cpp
plugins/pluginloader.cpp
2013-06-19 12:29:24 +01:00
2013-06-17 11:23:08 +01:00
networkpackage.cpp
daemon.cpp
2013-06-25 17:08:34 +01:00
device.cpp
2013-06-06 04:57:06 +01:00
)
add_subdirectory(plugins)
kde4_add_plugin(kded_kdeconnect ${kded_kdeconnect_SRCS})
2013-06-06 04:57:06 +01:00
target_link_libraries(kded_kdeconnect
2013-06-06 04:57:06 +01:00
${KDE4_KDECORE_LIBS}
${KDE4_KDEUI_LIBS}
#kdnssd
qjson
2013-06-06 04:57:06 +01:00
${QT_QTNETWORK_LIBRARY}
)
macro (generate_and_install_dbus_interface main_project_target header_file output_xml_file) #OPTIONS qdbus_options
QT4_EXTRACT_OPTIONS(
extra_files_ignore
qdbus_options
${ARGN}
)
qt4_generate_dbus_interface(
${header_file}
${output_xml_file}
OPTIONS ${qdbus_options}
)
add_custom_target(
${output_xml_file}
SOURCES ${CMAKE_CURRENT_BINARY_DIR}/${output_xml_file}
)
install(
FILES ${CMAKE_CURRENT_BINARY_DIR}/${output_xml_file}
DESTINATION ${DBUS_INTERFACES_INSTALL_DIR}
)
add_dependencies(
${main_project_target}
${output_xml_file}
)
endmacro (generate_and_install_dbus_interface)
generate_and_install_dbus_interface(
kded_kdeconnect
2013-06-25 17:08:34 +01:00
daemon.h
org.kde.kdeconnect.daemon.xml
2013-06-25 17:08:34 +01:00
OPTIONS -a
)
generate_and_install_dbus_interface(
kded_kdeconnect
device.h
org.kde.kdeconnect.device.xml
OPTIONS -a
)
install(TARGETS kded_kdeconnect DESTINATION ${PLUGIN_INSTALL_DIR})
install(FILES kdeconnect.desktop DESTINATION ${SERVICES_INSTALL_DIR}/kded)
install(FILES kdeconnect.notifyrc DESTINATION ${DATA_INSTALL_DIR}/kdeconnect)