forked from qt-creator/qt-creator
Move it to the git plugin. Change-Id: I8151573ed50df70776f7ebf0475dd41fb84fae83 Reviewed-by: Tobias Hunger <tobias.hunger@qt.io>
50 lines
1.2 KiB
QML
50 lines
1.2 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: [
|
|
"descriptionwidgetwatcher.cpp",
|
|
"descriptionwidgetwatcher.h",
|
|
"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",
|
|
]
|
|
}
|
|
|