2014-06-14 14:22:40 +01:00
|
|
|
project(KDEConnectCore)
|
|
|
|
|
|
|
|
include_directories(
|
|
|
|
${QJSON_INCLUDE_DIR}
|
|
|
|
${CMAKE_CURRENT_BINARY_DIR}
|
2014-06-14 15:34:00 +01:00
|
|
|
${QCA2_INCLUDE_DIR}
|
2014-06-14 14:22:40 +01:00
|
|
|
)
|
|
|
|
|
|
|
|
add_subdirectory(backends/lan)
|
|
|
|
add_subdirectory(backends/loopback)
|
|
|
|
|
|
|
|
set(kded_kdeconnect_SRCS
|
|
|
|
${kded_kdeconnect_SRCS}
|
|
|
|
|
|
|
|
backends/linkprovider.cpp
|
|
|
|
backends/devicelink.cpp
|
|
|
|
|
2014-06-14 15:34:00 +01:00
|
|
|
kdeconnectplugin.cpp
|
|
|
|
pluginloader.cpp
|
2014-06-14 14:22:40 +01:00
|
|
|
|
|
|
|
networkpackage.cpp
|
|
|
|
filetransferjob.cpp
|
|
|
|
daemon.cpp
|
|
|
|
device.cpp
|
|
|
|
kdebugnamespace.cpp
|
|
|
|
)
|
|
|
|
|
2014-06-16 19:02:07 +01:00
|
|
|
add_library(kdeconnectcore SHARED ${kded_kdeconnect_SRCS})
|
2014-06-14 14:22:40 +01:00
|
|
|
target_link_libraries(kdeconnectcore
|
|
|
|
PUBLIC
|
2014-06-16 19:02:07 +01:00
|
|
|
KF5::KDELibs4Support
|
2014-06-14 14:22:40 +01:00
|
|
|
|
|
|
|
PRIVATE
|
2014-06-16 19:02:07 +01:00
|
|
|
KF5::KIOWidgets
|
|
|
|
KF5::KCMUtils
|
|
|
|
Qt5::Network
|
2014-06-14 14:22:40 +01:00
|
|
|
${QJSON_LIBRARIES}
|
|
|
|
${QCA2_LIBRARIES}
|
|
|
|
)
|
2014-06-14 15:34:00 +01:00
|
|
|
target_include_directories(kdeconnectcore PUBLIC ${CMAKE_CURRENT_BINARY_DIR})
|
2014-06-14 14:22:40 +01:00
|
|
|
generate_export_header(kdeconnectcore EXPORT_FILE_NAME ${CMAKE_CURRENT_BINARY_DIR}/kdeconnectcore_export.h BASE_NAME KDEConnectCore)
|
|
|
|
|
2014-06-14 15:34:00 +01:00
|
|
|
include(macros)
|
2014-06-14 14:22:40 +01:00
|
|
|
|
|
|
|
generate_and_install_dbus_interface(
|
|
|
|
kdeconnectcore
|
|
|
|
../core/daemon.h
|
|
|
|
org.kde.kdeconnect.daemon.xml
|
|
|
|
OPTIONS -a
|
|
|
|
)
|
|
|
|
|
|
|
|
generate_and_install_dbus_interface(
|
|
|
|
kdeconnectcore
|
|
|
|
../core/device.h
|
|
|
|
org.kde.kdeconnect.device.xml
|
|
|
|
OPTIONS -a
|
|
|
|
)
|
|
|
|
|
2014-06-14 17:04:54 +01:00
|
|
|
install(TARGETS kdeconnectcore EXPORT kdeconnectLibraryTargets ${INSTALL_TARGETS_DEFAULT_ARGS})
|