2014-03-11 11:30:14 +01:00
|
|
|
import qbs 1.0
|
2013-02-15 12:49:50 +01:00
|
|
|
|
|
|
|
|
QtcPlugin {
|
|
|
|
|
name: "DiffEditor"
|
|
|
|
|
|
|
|
|
|
Depends { name: "Qt.widgets" }
|
2014-02-10 13:02:33 +01:00
|
|
|
Depends { name: "Aggregation" }
|
|
|
|
|
Depends { name: "Utils" }
|
|
|
|
|
|
2013-02-15 12:49:50 +01:00
|
|
|
Depends { name: "Core" }
|
|
|
|
|
Depends { name: "TextEditor" }
|
|
|
|
|
|
|
|
|
|
files: [
|
2013-06-04 17:35:11 +02:00
|
|
|
"diffeditor.cpp",
|
|
|
|
|
"diffeditor.h",
|
2014-02-13 16:43:28 +01:00
|
|
|
"diffeditor.qrc",
|
2013-06-05 13:11:43 +02:00
|
|
|
"diffeditor_global.h",
|
|
|
|
|
"diffeditorconstants.h",
|
2013-12-16 16:19:40 +01:00
|
|
|
"diffeditorcontroller.cpp",
|
|
|
|
|
"diffeditorcontroller.h",
|
2014-01-30 13:31:11 +01:00
|
|
|
"diffeditordocument.cpp",
|
|
|
|
|
"diffeditordocument.h",
|
2013-06-17 13:55:31 +02:00
|
|
|
"diffeditorfactory.cpp",
|
|
|
|
|
"diffeditorfactory.h",
|
2014-02-24 11:10:17 +01:00
|
|
|
"diffeditorguicontroller.cpp",
|
|
|
|
|
"diffeditorguicontroller.h",
|
2014-02-11 13:00:35 +01:00
|
|
|
"diffeditormanager.cpp",
|
|
|
|
|
"diffeditormanager.h",
|
2013-02-15 12:49:50 +01:00
|
|
|
"diffeditorplugin.cpp",
|
|
|
|
|
"diffeditorplugin.h",
|
2014-02-13 16:43:28 +01:00
|
|
|
"diffeditorreloader.cpp",
|
|
|
|
|
"diffeditorreloader.h",
|
2013-05-07 14:02:08 +02:00
|
|
|
"differ.cpp",
|
|
|
|
|
"differ.h",
|
2014-02-28 10:40:20 +01:00
|
|
|
"diffutils.cpp",
|
|
|
|
|
"diffutils.h",
|
2014-06-13 16:31:28 +02:00
|
|
|
"selectabletexteditorwidget.cpp",
|
|
|
|
|
"selectabletexteditorwidget.h",
|
2014-01-30 14:27:50 +01:00
|
|
|
"sidebysidediffeditorwidget.cpp",
|
|
|
|
|
"sidebysidediffeditorwidget.h",
|
2014-02-13 16:43:28 +01:00
|
|
|
"unifieddiffeditorwidget.cpp",
|
|
|
|
|
"unifieddiffeditorwidget.h",
|
2013-02-15 12:49:50 +01:00
|
|
|
]
|
|
|
|
|
}
|
|
|
|
|
|