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
28 lines
686 B
CMake
28 lines
686 B
CMake
|
|
include_directories(${CMAKE_CURRENT_BINARY_DIR}
|
|
${CMAKE_CURRENT_SOURCE_DIR}
|
|
${CMAKE_SOURCE_DIR}
|
|
${CMAKE_BINARY_DIR})
|
|
|
|
set(kcm_SRCS
|
|
kcm.cpp
|
|
devicessortproxymodel.cpp
|
|
kdebugnamespace.cpp
|
|
)
|
|
|
|
qt5_wrap_ui(kcm_SRCS kcm.ui)
|
|
|
|
add_library(kcm_kdeconnect MODULE ${kcm_SRCS})
|
|
|
|
target_link_libraries(kcm_kdeconnect
|
|
Qt5::Core
|
|
Qt5::Gui
|
|
${KDE4_KDEUI_LIBRARY}
|
|
KF5::KCMUtils
|
|
kdeconnectinterfaces
|
|
)
|
|
|
|
install(TARGETS kcm_kdeconnect DESTINATION ${PLUGIN_INSTALL_DIR})
|
|
|
|
install(FILES kcm_kdeconnect.desktop DESTINATION ${SERVICES_INSTALL_DIR})
|
|
install(FILES kdeconnect.desktop DESTINATION ${XDG_APPS_INSTALL_DIR})
|