2013-02-15 12:49:50 +01:00
|
|
|
import qbs.base 1.0
|
|
|
|
|
|
2013-10-02 17:52:45 +02:00
|
|
|
import QtcPlugin
|
2013-02-15 12:49:50 +01:00
|
|
|
|
|
|
|
|
QtcPlugin {
|
|
|
|
|
name: "DiffEditor"
|
|
|
|
|
|
|
|
|
|
Depends { name: "Qt.widgets" }
|
|
|
|
|
Depends { name: "Core" }
|
|
|
|
|
Depends { name: "TextEditor" }
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
files: [
|
2013-06-04 17:35:11 +02:00
|
|
|
"diffeditor.cpp",
|
|
|
|
|
"diffeditor.h",
|
2013-06-05 13:11:43 +02:00
|
|
|
"diffeditor_global.h",
|
|
|
|
|
"diffeditorconstants.h",
|
2013-06-17 13:55:31 +02:00
|
|
|
"diffeditorfactory.cpp",
|
|
|
|
|
"diffeditorfactory.h",
|
2013-05-07 14:02:08 +02:00
|
|
|
"diffeditorfile.cpp",
|
|
|
|
|
"diffeditorfile.h",
|
2013-02-15 12:49:50 +01:00
|
|
|
"diffeditorplugin.cpp",
|
|
|
|
|
"diffeditorplugin.h",
|
|
|
|
|
"diffeditorwidget.cpp",
|
|
|
|
|
"diffeditorwidget.h",
|
2013-05-07 14:02:08 +02:00
|
|
|
"differ.cpp",
|
|
|
|
|
"differ.h",
|
2013-06-17 13:55:31 +02:00
|
|
|
"diffshoweditor.cpp",
|
|
|
|
|
"diffshoweditor.h",
|
|
|
|
|
"diffshoweditorfactory.cpp",
|
|
|
|
|
"diffshoweditorfactory.h",
|
2013-02-15 12:49:50 +01:00
|
|
|
]
|
|
|
|
|
}
|
|
|
|
|
|