mirror of
https://invent.kde.org/marcoa/shift-shell.git
synced 2026-04-27 14:33:08 +00:00
There's no way to access the phone number from PersonsModel directly, so we need to go a bit around
14 lines
564 B
CMake
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)
|