forked from qt-creator/qt-creator
Change-Id: Ic2f4a38d2ed08426ca7e5229d959b10fa545c129 Reviewed-by: Tobias Hunger <tobias.hunger@digia.com>
37 lines
800 B
QML
37 lines
800 B
QML
import qbs.base 1.0
|
|
|
|
import QtcPlugin
|
|
|
|
QtcPlugin {
|
|
name: "DiffEditor"
|
|
|
|
Depends { name: "Qt.widgets" }
|
|
Depends { name: "Core" }
|
|
Depends { name: "TextEditor" }
|
|
|
|
|
|
files: [
|
|
"diffeditor.cpp",
|
|
"diffeditor.h",
|
|
"diffeditor_global.h",
|
|
"diffeditorconstants.h",
|
|
"diffeditorcontroller.cpp",
|
|
"diffeditorcontroller.h",
|
|
"diffeditorfactory.cpp",
|
|
"diffeditorfactory.h",
|
|
"diffeditorfile.cpp",
|
|
"diffeditorfile.h",
|
|
"diffeditorplugin.cpp",
|
|
"diffeditorplugin.h",
|
|
"diffeditorwidget.cpp",
|
|
"diffeditorwidget.h",
|
|
"differ.cpp",
|
|
"differ.h",
|
|
"diffshoweditor.cpp",
|
|
"diffshoweditor.h",
|
|
"diffshoweditorfactory.cpp",
|
|
"diffshoweditorfactory.h",
|
|
]
|
|
}
|
|
|