a1a560c469
Ported using KDELibs4Support, for a smaller delta, so we can keep developing on master until we decide not to. At the moment, it builds and installs but tests don't pass because of a QCA2 initialization problem I didn't manage to debug yet. CCMAIL: kdeconnect@kde.org
19 lines
494 B
CMake
19 lines
494 B
CMake
include_directories(${CMAKE_SOURCE_DIR})
|
|
|
|
set(kio_kdeconnect_PART_SRCS
|
|
kiokdeconnect.cpp
|
|
kdebugnamespace.cpp)
|
|
|
|
add_library(kio_kdeconnect MODULE ${kio_kdeconnect_PART_SRCS})
|
|
|
|
target_link_libraries(kio_kdeconnect
|
|
KF5::KIOCore
|
|
KF5::KDELibs4Support
|
|
Qt5::Core
|
|
Qt5::Gui
|
|
kdeconnectinterfaces
|
|
)
|
|
|
|
########### install files ###############
|
|
install(TARGETS kio_kdeconnect DESTINATION ${PLUGIN_INSTALL_DIR})
|
|
install(FILES kdeconnect.protocol DESTINATION ${SERVICES_INSTALL_DIR})
|