blob: c336edf2f55ee5f2dd7a7eebda1aaef05b172af9 (
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
36
37
38
39
40
41
42
43
44
45
46
|
# build in a separate folder.
MYBUILDDIR = $$OUT_PWD/build/
OBJECTS_DIR = $$MYBUILDDIR/o
UI_DIR = $$MYBUILDDIR/ui
MOC_DIR = $$MYBUILDDIR/moc
RCC_DIR = $$MYBUILDDIR/rcc
HEADERS += tag_table.h \
symbols.h \
skin_parser.h \
skin_scan.h \
skin_debug.h \
parsetreemodel.h \
parsetreenode.h \
editorwindow.h \
skinhighlighter.h \
skindocument.h \
preferencesdialog.h \
codeeditor.h \
projectmodel.h \
tabcontent.h \
configdocument.h
SOURCES += tag_table.c \
skin_parser.c \
skin_scan.c \
skin_debug.c \
main.cpp \
parsetreemodel.cpp \
parsetreenode.cpp \
editorwindow.cpp \
skinhighlighter.cpp \
skindocument.cpp \
preferencesdialog.cpp \
codeeditor.cpp \
projectmodel.cpp \
configdocument.cpp
OTHER_FILES += README \
resources/windowicon.png \
resources/appicon.xcf \
resources/COPYING \
resources/document-save.png \
resources/document-open.png \
resources/document-new.png
FORMS += editorwindow.ui \
preferencesdialog.ui \
configdocument.ui
RESOURCES += resources.qrc
|