forked from qt-creator/qt-creator
... based on output from dependencyinfo.py script Change-Id: I9532f6d259f15c16b62fae0ca18f8a8cad95bd11 Reviewed-by: Christian Kandeler <christian.kandeler@digia.com> Reviewed-by: Christian Stenger <christian.stenger@digia.com> Reviewed-by: Tobias Hunger <tobias.hunger@digia.com>
35 lines
764 B
QML
35 lines
764 B
QML
import qbs.base 1.0
|
|
|
|
import QtcPlugin
|
|
|
|
QtcPlugin {
|
|
name: "DiffEditor"
|
|
|
|
Depends { name: "Qt.widgets" }
|
|
Depends { name: "Aggregation" }
|
|
Depends { name: "Utils" }
|
|
|
|
Depends { name: "Core" }
|
|
Depends { name: "TextEditor" }
|
|
|
|
files: [
|
|
"diffeditor.cpp",
|
|
"diffeditor.h",
|
|
"diffeditor_global.h",
|
|
"diffeditorconstants.h",
|
|
"diffeditorcontroller.cpp",
|
|
"diffeditorcontroller.h",
|
|
"diffeditordocument.cpp",
|
|
"diffeditordocument.h",
|
|
"diffeditorfactory.cpp",
|
|
"diffeditorfactory.h",
|
|
"diffeditorplugin.cpp",
|
|
"diffeditorplugin.h",
|
|
"differ.cpp",
|
|
"differ.h",
|
|
"sidebysidediffeditorwidget.cpp",
|
|
"sidebysidediffeditorwidget.h",
|
|
]
|
|
}
|
|
|