mirror of
https://bitbucket.org/smil3y/kde-workspace.git
synced 2025-02-24 19:02:51 +00:00
23 lines
478 B
CMake
23 lines
478 B
CMake
########### next target ###############
|
|
|
|
set(kpasswdstoreconfig_SRCS
|
|
kpasswdstoreconfig.cpp
|
|
kpasswdstoreconfig.ui
|
|
)
|
|
|
|
kde4_add_plugin(kcm_kpasswdstoreconfig ${kpasswdstoreconfig_SRCS})
|
|
|
|
target_link_libraries(kcm_kpasswdstoreconfig
|
|
${KDE4_KDEUI_LIBS}
|
|
${KDE4_KCMUTILS_LIBS}
|
|
)
|
|
|
|
install(
|
|
TARGETS kcm_kpasswdstoreconfig
|
|
DESTINATION ${KDE4_PLUGIN_INSTALL_DIR}
|
|
)
|
|
|
|
install(
|
|
FILES kcm_kpasswdstoreconfig.desktop
|
|
DESTINATION ${KDE4_SERVICES_INSTALL_DIR}
|
|
)
|