kde-workspace/kcontrol/kpasswdstore/CMakeLists.txt
Ivailo Monev 170595f3ea kcontrol: implement option to change passwords stored via KPasswdStore
requires some insight by design:
https://ibb.co/xFch8Jp

and the following commit from kdelibs:
c311f7032f4076c56cbf9ccf6db9a5e5d602aa5a

Signed-off-by: Ivailo Monev <xakepa10@gmail.com>
2023-06-20 00:14:35 +03:00

23 lines
461 B
CMake

########### next target ###############
set(kpasswdstoreconfig_SRCS
kpasswdstoreconfig.cpp
)
kde4_add_plugin(kcm_kpasswdstoreconfig ${kpasswdstoreconfig_SRCS})
target_link_libraries(kcm_kpasswdstoreconfig
KDE4::kdeui
KDE4::kcmutils
KDE4::kpasswdstore
)
install(
TARGETS kcm_kpasswdstoreconfig
DESTINATION ${KDE4_PLUGIN_INSTALL_DIR}
)
install(
FILES kcm_kpasswdstoreconfig.desktop
DESTINATION ${KDE4_SERVICES_INSTALL_DIR}
)