2014-06-14 14:22:40 +01:00
|
|
|
project(KDEConnectCore)
|
|
|
|
|
2014-06-18 01:49:07 +01:00
|
|
|
add_definitions(-DTRANSLATION_DOMAIN=\"kdeconnect-core\")
|
|
|
|
|
2014-06-14 14:22:40 +01:00
|
|
|
add_subdirectory(backends/lan)
|
|
|
|
add_subdirectory(backends/loopback)
|
2017-05-24 22:52:18 +01:00
|
|
|
|
|
|
|
option(BLUETOOTH_ENABLED "Bluetooth support for kdeconnect" OFF)
|
|
|
|
if(BLUETOOTH_ENABLED)
|
2018-03-17 17:52:45 +00:00
|
|
|
find_package(Qt5 ${QT_MIN_VERSION} REQUIRED COMPONENTS Bluetooth)
|
2017-05-24 22:52:18 +01:00
|
|
|
add_subdirectory(backends/bluetooth)
|
|
|
|
endif()
|
2014-06-14 14:22:40 +01:00
|
|
|
|
2019-03-13 00:30:24 +00:00
|
|
|
option(LOOPBACK_ENABLED "Loopback backend enabled" OFF)
|
|
|
|
|
2015-03-10 04:59:36 +00:00
|
|
|
set(kdeconnectcore_SRCS
|
2015-02-24 06:14:22 +00:00
|
|
|
${backends_kdeconnect_SRCS}
|
2014-06-14 14:22:40 +01:00
|
|
|
|
|
|
|
backends/linkprovider.cpp
|
|
|
|
backends/devicelink.cpp
|
2015-07-05 14:23:53 +01:00
|
|
|
backends/pairinghandler.cpp
|
2015-03-01 20:17:46 +00:00
|
|
|
backends/devicelinereader.cpp
|
2014-06-14 14:22:40 +01:00
|
|
|
|
2014-06-14 15:34:00 +01:00
|
|
|
kdeconnectplugin.cpp
|
2015-03-14 04:19:39 +00:00
|
|
|
kdeconnectpluginconfig.cpp
|
2014-06-14 15:34:00 +01:00
|
|
|
pluginloader.cpp
|
2014-06-14 14:22:40 +01:00
|
|
|
|
2015-03-02 04:16:07 +00:00
|
|
|
kdeconnectconfig.cpp
|
2014-10-10 19:26:50 +01:00
|
|
|
dbushelper.cpp
|
2018-03-04 19:48:51 +00:00
|
|
|
networkpacket.cpp
|
2014-06-14 14:22:40 +01:00
|
|
|
filetransferjob.cpp
|
2019-06-02 15:02:21 +01:00
|
|
|
compositefiletransferjob.cpp
|
2014-06-14 14:22:40 +01:00
|
|
|
daemon.cpp
|
|
|
|
device.cpp
|
2016-06-01 11:43:34 +01:00
|
|
|
core_debug.cpp
|
2019-06-02 15:03:11 +01:00
|
|
|
notificationserverinfo.cpp
|
2014-06-14 14:22:40 +01:00
|
|
|
)
|
|
|
|
|
2015-04-10 16:48:48 +01:00
|
|
|
add_library(kdeconnectcore ${kdeconnectcore_SRCS})
|
2019-04-30 18:03:24 +01:00
|
|
|
|
|
|
|
target_include_directories(kdeconnectcore PUBLIC ${CMAKE_CURRENT_BINARY_DIR} ${CMAKE_SOURCE_DIR})
|
|
|
|
|
2014-06-14 14:22:40 +01:00
|
|
|
target_link_libraries(kdeconnectcore
|
|
|
|
PUBLIC
|
2014-09-22 01:37:10 +01:00
|
|
|
Qt5::Network
|
2015-05-04 23:41:39 +01:00
|
|
|
KF5::CoreAddons
|
2018-11-21 18:58:44 +00:00
|
|
|
KF5::KIOCore
|
2015-01-16 05:35:30 +00:00
|
|
|
qca-qt5
|
2014-06-14 14:22:40 +01:00
|
|
|
PRIVATE
|
2014-09-22 01:37:10 +01:00
|
|
|
Qt5::DBus
|
|
|
|
KF5::I18n
|
|
|
|
KF5::ConfigCore
|
2014-06-14 14:22:40 +01:00
|
|
|
)
|
2014-07-01 22:59:38 +01:00
|
|
|
|
2017-05-24 22:52:18 +01:00
|
|
|
if (BLUETOOTH_ENABLED)
|
|
|
|
target_compile_definitions(kdeconnectcore PRIVATE -DKDECONNECT_BLUETOOTH)
|
|
|
|
target_link_libraries(kdeconnectcore PRIVATE Qt5::Bluetooth)
|
|
|
|
endif()
|
|
|
|
|
2019-03-13 00:30:24 +00:00
|
|
|
if (LOOPBACK_ENABLED)
|
|
|
|
target_compile_definitions(kdeconnectcore PRIVATE -DKDECONNECT_LOOPBACK)
|
|
|
|
endif()
|
|
|
|
|
2014-06-30 00:12:24 +01:00
|
|
|
set_target_properties(kdeconnectcore PROPERTIES
|
|
|
|
VERSION ${KDECONNECT_VERSION}
|
|
|
|
SOVERSION ${KDECONNECT_VERSION_MAJOR}
|
|
|
|
)
|
|
|
|
|
2015-09-10 14:51:38 +01:00
|
|
|
generate_export_header(kdeconnectcore EXPORT_FILE_NAME kdeconnectcore_export.h BASE_NAME KDEConnectCore)
|
2014-06-14 14:22:40 +01:00
|
|
|
|
2015-03-12 11:42:10 +00:00
|
|
|
install(TARGETS kdeconnectcore EXPORT kdeconnectLibraryTargets ${INSTALL_TARGETS_DEFAULT_ARGS} LIBRARY NAMELINK_SKIP)
|