forked from qt-creator/qt-creator
Reduce code repetition. Change-Id: I416555dd83ce888088a6a259777c294a6feb35f4 Reviewed-by: Orgad Shaneh <orgads@gmail.com>
48 lines
1.1 KiB
QML
48 lines
1.1 KiB
QML
import qbs 1.0
|
|
|
|
QtcPlugin {
|
|
name: "DiffEditor"
|
|
|
|
Depends { name: "Qt.widgets" }
|
|
Depends { name: "Utils" }
|
|
|
|
Depends { name: "Core" }
|
|
Depends { name: "TextEditor" }
|
|
|
|
pluginRecommends: [
|
|
"CodePaster"
|
|
]
|
|
|
|
files: [
|
|
"diffeditor.cpp",
|
|
"diffeditor.h",
|
|
"diffeditor.qrc",
|
|
"diffeditor_global.h",
|
|
"diffeditorconstants.h",
|
|
"diffeditoricons.h",
|
|
"diffeditorcontroller.cpp",
|
|
"diffeditorcontroller.h",
|
|
"diffeditordocument.cpp",
|
|
"diffeditordocument.h",
|
|
"diffeditorfactory.cpp",
|
|
"diffeditorfactory.h",
|
|
"diffeditorplugin.cpp",
|
|
"diffeditorplugin.h",
|
|
"diffeditorwidgetcontroller.cpp",
|
|
"diffeditorwidgetcontroller.h",
|
|
"differ.cpp",
|
|
"differ.h",
|
|
"diffutils.cpp",
|
|
"diffutils.h",
|
|
"diffview.cpp",
|
|
"diffview.h",
|
|
"selectabletexteditorwidget.cpp",
|
|
"selectabletexteditorwidget.h",
|
|
"sidebysidediffeditorwidget.cpp",
|
|
"sidebysidediffeditorwidget.h",
|
|
"unifieddiffeditorwidget.cpp",
|
|
"unifieddiffeditorwidget.h",
|
|
]
|
|
}
|
|
|