shift-shell/dialer/plugin/CMakeLists.txt
Martin Klapetek 5ebcfd904d [dialer] Add KPeople helper plugin
There's no way to access the phone number from PersonsModel directly, so
we need to go a bit around
2015-07-15 21:17:35 +02:00

14 lines
564 B
CMake

set(kpeoplehelper_SRCS
kpeoplehelper.cpp
kpeoplehelperplugin.cpp
)
add_library(kpeoplehelperplugin SHARED ${kpeoplehelper_SRCS})
target_link_libraries(kpeoplehelperplugin Qt5::Core
Qt5::Qml
KF5::People
KF5::PeopleBackend)
install(TARGETS kpeoplehelperplugin DESTINATION ${KDE_INSTALL_QMLDIR}/org/kde/plasma/private/kpeoplehelper)
install(FILES qmldir DESTINATION ${KDE_INSTALL_QMLDIR}/org/kde/plasma/private/kpeoplehelper)