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

0001 ########### next target ###############
0002 add_executable(kwalletmanager5)
0003 target_sources(kwalletmanager5 PRIVATE
0004     kwalletmanager.cpp
0005     kwalletmanagerwidget.cpp
0006     kwalletmanagerwidgetitem.cpp
0007     kwhexview.cpp
0008     walletcontrolwidget.cpp
0009     main.cpp
0010     kwalletpopup.cpp
0011     kwalleteditor.cpp
0012     kwmapeditor.cpp
0013     allyourbase.cpp
0014     kbetterthankdialogbase.cpp
0015     registercreateactionmethod.cpp
0016     applicationsmanager.cpp
0017     connectedapplicationstable.cpp
0018     connectedappmodel.cpp
0019     disconnectappbutton.cpp
0020     authorizedappmodel.cpp
0021     authorizedapplicationstable.cpp
0022     revokeauthbutton.cpp
0023     kwalletmanager.h
0024     kwalletmanagerwidget.h
0025     walletcontrolwidget.h
0026     allyourbase.h
0027     kwhexview.h
0028     authorizedapplicationstable.h
0029     kwalletmanagerwidgetitem.h
0030     connectedapplicationstable.h
0031     authorizedappmodel.h
0032     kwalleteditor.h
0033     connectedappmodel.h
0034     kwalletpopup.h
0035     kbetterthankdialogbase.h
0036     revokeauthbutton.h
0037     registercreateactionmethod.h
0038     disconnectappbutton.h
0039     kwmapeditor.h
0040     applicationsmanager.h
0041 
0042     kwalletmanager.qrc
0043 )
0044 
0045 ecm_qt_declare_logging_category(kwalletmanager5
0046                                 HEADER kwalletmanager_debug.h
0047                                 IDENTIFIER KWALLETMANAGER_LOG
0048                                 CATEGORY_NAME org.kde.kwalletmanager DESCRIPTION "kwalletmanager" EXPORT KWALLETMANAGER)
0049 
0050 qt_add_dbus_interface(kwalletmanager_SRCS
0051     ${KWALLET_DBUS_INTERFACES_DIR}/kf6_org.kde.KWallet.xml kwallet_interface
0052 )
0053 target_sources(kwalletmanager5 PRIVATE ${kwalletmanager_SRCS})
0054 
0055 ki18n_wrap_ui(kwalletmanager5
0056     walletwidget.ui
0057     kbetterthankdialogbase.ui
0058     walletcontrolwidget.ui
0059     applicationsmanager.ui
0060 )
0061 
0062 
0063 # Sets the icon on Windows and OSX
0064 file(GLOB ICONS_SRCS "${CMAKE_CURRENT_SOURCE_DIR}/icons/*-apps-kwalletmanager.png")
0065 ecm_add_app_icon(kwalletmanager5 ICONS ${ICONS_SRCS})
0066 
0067 
0068 target_link_libraries(kwalletmanager5
0069     Qt6::Core
0070     KF6::CoreAddons
0071     KF6::I18n
0072     KF6::XmlGui #KActionCollection
0073     KF6::ConfigWidgets
0074     KF6::ItemViews
0075     KF6::Wallet
0076     KF6::DBusAddons
0077     KF6::ConfigCore
0078     KF6::KIOCore
0079     KF6::KIOGui
0080     KF6::Archive
0081     KF6::WindowSystem
0082     KF6::Crash
0083     KF6::Codecs
0084     KF6::StatusNotifierItem
0085 )
0086 
0087 install(TARGETS kwalletmanager5  ${KDE_INSTALL_TARGETS_DEFAULT_ARGS} )
0088 
0089 add_subdirectory(icons)
0090 
0091 ########### install files ###############
0092