Warning, /frameworks/kcompletion/src/designer/CMakeLists.txt is written in an unsupported language. File is not indexed.

0001 include(ECMAddQtDesignerPlugin)
0002 
0003 ecm_qtdesignerplugin_widget(KComboBox
0004     TOOLTIP "Combo Box (KF6)"
0005     GROUP "Input (KF6)"
0006 )
0007 ecm_qtdesignerplugin_widget(KHistoryComboBox
0008     TOOLTIP "A combobox for offering a history and completion (KF6)"
0009     WHATSTHIS "A combobox which implements a history like a unix shell"
0010     GROUP "Input (KF6)"
0011 )
0012 ecm_qtdesignerplugin_widget(KLineEdit
0013     TOOLTIP "Line Edit (KF6)"
0014     GROUP "Input (KF6)"
0015 )
0016 
0017 ecm_add_qtdesignerplugin(kcompletionwidgets
0018     NAME KCompletionWidgets
0019     OUTPUT_NAME kcompletion6widgets
0020     WIDGETS
0021         KComboBox
0022         KHistoryComboBox
0023         KLineEdit
0024     LINK_LIBRARIES
0025         KF6::Completion
0026     INSTALL_DESTINATION "${KDE_INSTALL_QTPLUGINDIR}/designer"
0027     COMPONENT Devel
0028 )