| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
 | | INCLUDEPATH *= $$PWD  |  | DEPENDPATH *= $$PWD  |  |   |  | QT *= xml  |  |   |  | # Input  |  | SOURCES += \  |  |     $$PWD/resourcefile.cpp \  |  |     $$PWD/resourceview.cpp \  |  |     $$PWD/qrceditor.cpp \  |  |     $$PWD/undocommands.cpp  |  |   |  | HEADERS += \  |  |     $$PWD/resourcefile_p.h \  |  |     $$PWD/resourceview.h \  |  |     $$PWD/qrceditor.h \  |  |     $$PWD/undocommands_p.h  |  |   |  | FORMS += $$PWD/qrceditor.ui  | 
 |