-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathQPainterDebugger.pro
More file actions
120 lines (51 loc) · 1.27 KB
/
Copy pathQPainterDebugger.pro
File metadata and controls
120 lines (51 loc) · 1.27 KB
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
47
48
49
50
51
52
53
54
55
56
57
#-------------------------------------------------
#
# Project created by QtCreator 2011-11-24T21:01:26
#
#-------------------------------------------------
QT += core gui
TARGET = QPainterDebugger
TEMPLATE = app
SOURCES += main.cpp\
QPainterDebuggerMainWindow.cpp \
PainterContext.cpp \
Lexer.cpp \
Parser.cpp \
ASTNode.cpp \
IdentifierExpression.cpp \
FunctionCall.cpp \
RootNode.cpp \
VariableAssignment.cpp \
LiteralExpression.cpp \
Expression.cpp \
BinaryExpression.cpp \
UnaryExpression.cpp \
NameMangling.cpp \
DSLHighlighter.cpp \
Scope.cpp \
ConstructorCall.cpp \
VariableCreation.cpp
HEADERS += QPainterDebuggerMainWindow.h \
PainterContext.h \
Lexer.h \
Parser.h \
ASTNode.h \
IdentifierExpression.h \
FunctionCall.h \
RootNode.h \
VariableAssignment.h \
LiteralExpression.h \
Expression.h \
BinaryExpression.h \
UnaryExpression.h \
NameMangling.h \
DSLHighlighter.h \
Scope.h \
ClassScope.h \
BindedFunction.h \
ClassPrototype.h \
ConstructorCall.h \
ClassConstructor.h \
BindingMacros.h \
VariableCreation.h
FORMS += QPainterDebuggerMainWindow.ui