Warning, /plasma/libksysguard/processui/designer/CMakeLists.txt is written in an unsupported language. File is not indexed.

0001 include(ECMAddQtDesignerPlugin)
0002 
0003 ecm_qtdesignerplugin_widget(KSysGuardProcessList
0004     INCLUDE_FILE "ksysguardprocesslist.h"
0005     TOOLTIP "A list of processes (programs) running."
0006     WHATSTHIS "A widget for showing all the processes running along with their memory usage and other details."
0007     GROUP "KSysGuard"
0008 )
0009 ecm_qtdesignerplugin_widget(KTextEditVT
0010     INCLUDE_FILE "KTextEditVT.h"
0011     TOOLTIP "A text box suitable for displaying output from VT console-based programs."
0012     WHATSTHIS "A widget for displaying out from console based programs.  Some VT100 style commands are interpreted (For example to change the color) as well as some non-printable characters (backspace/delete etc will delete the last character.).  For example the output from 'ls --color' can be displayed."
0013     GROUP "KSysGuard"
0014 )
0015 
0016 ecm_add_qtdesignerplugin(ksysguardwidgets
0017     NAME KSysGuardWidgets
0018     OUTPUT_NAME ksysguard5widgets
0019     WIDGETS
0020         KSysGuardProcessList
0021         KTextEditVT
0022     LINK_LIBRARIES
0023         KSysGuard::ProcessUi
0024     INSTALL_DESTINATION "${KDE_INSTALL_QTPLUGINDIR}/designer"
0025     COMPONENT Devel
0026 )