blob: 235f4e9dcde1477655c2101566a144f27215cea3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
DEFINES += DIFFEDITOR_LIBRARY
include(../../qtcreatorplugin.pri)
HEADERS += \
descriptionwidgetwatcher.h \
diffeditor_global.h \
diffeditor.h \
diffeditorconstants.h \
diffeditorcontroller.h \
diffeditordocument.h \
diffeditorfactory.h \
diffeditorplugin.h \
diffeditorwidgetcontroller.h \
diffutils.h \
diffview.h \
selectabletexteditorwidget.h \
sidebysidediffeditorwidget.h \
unifieddiffeditorwidget.h \
diffeditoricons.h
SOURCES += \
descriptionwidgetwatcher.cpp \
diffeditor.cpp \
diffeditorcontroller.cpp \
diffeditordocument.cpp \
diffeditorfactory.cpp \
diffeditorplugin.cpp \
diffeditorwidgetcontroller.cpp \
diffutils.cpp \
diffview.cpp \
selectabletexteditorwidget.cpp \
sidebysidediffeditorwidget.cpp \
unifieddiffeditorwidget.cpp
RESOURCES += diffeditor.qrc
|