Warning, /utilities/kwalletmanager/src/konfigurator/CMakeLists.txt is written in an unsupported language. File is not indexed.

0001 ########### next target ###############
0002 add_definitions(-DTRANSLATION_DOMAIN=\"kcmkwallet\")
0003 
0004 add_library(kcm_kwallet5 MODULE)
0005 target_sources(kcm_kwallet5 PRIVATE konfigurator.cpp konfigurator.h)
0006 
0007 ki18n_wrap_ui(kcm_kwallet5 walletconfigwidget.ui )
0008 
0009 
0010 
0011 target_link_libraries(kcm_kwallet5
0012     Qt6::Core
0013     KF6::AuthCore
0014     KF6::CoreAddons
0015     KF6::KCMUtils
0016     KF6::Wallet
0017     KF6::I18n
0018     Qt6::DBus
0019 )
0020 
0021 install(TARGETS kcm_kwallet5  DESTINATION ${KDE_INSTALL_PLUGINDIR}/plasma/kcms/systemsettings_qwidgets)
0022 
0023 ########### kauth helper ################
0024 add_executable(kcm_kwallet_helper5)
0025 target_sources(kcm_kwallet_helper5 PRIVATE savehelper.cpp savehelper.h)
0026 
0027 target_link_libraries(kcm_kwallet_helper5
0028     Qt6::Core
0029     KF6::AuthCore
0030     KF6::Wallet
0031     KF6::CoreAddons
0032 )
0033 
0034 install(TARGETS kcm_kwallet_helper5 DESTINATION ${KAUTH_HELPER_INSTALL_DIR})
0035 
0036 kauth_install_helper_files(kcm_kwallet_helper5 org.kde.kcontrol.kcmkwallet5 root)
0037 kauth_install_actions(org.kde.kcontrol.kcmkwallet5 kwallet.actions)
0038