-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathC--.pro
70 lines (62 loc) · 1.34 KB
/
C--.pro
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
58
59
60
61
62
63
64
65
66
67
68
69
70
TARGET = c--
QT -= gui
CONFIG += c++14 -Werror
CONFIG -= app_bundle
QMAKE_CXXFLAGS += -std=c++14
QMAKE_CC = g++
QMAKE_CXX = g++
DEFINES += \
CPLUSPLUS \
QT_DEPRECATED_WARNINGS \
YY_NO_UNPUT
INCLUDEPATH += \
Helpers \
Nodes \
Parser \
.
DESTDIR = build
OBJECTS_DIR = obj
MOC_DIR = moc
SOURCES += \
Helpers/util.cpp \
Helpers/token.cpp \
Nodes/call_node.cpp \
Nodes/construct_node.cpp \
Nodes/klass_node.cpp \
Nodes/op_node.cpp \
Nodes/block_node.cpp \
Nodes/constant_node.cpp \
Nodes/error.cpp \
Nodes/function_node.cpp \
Nodes/if_node.cpp \
Nodes/node.cpp \
Nodes/return_node.cpp \
Nodes/param_node.cpp \
Nodes/program_node.cpp \
Nodes/simple_node.cpp \
Parser/lex.yy.c \
Parser/parser.tab.c \
main.cpp \
Nodes/context.cpp \
Nodes/declare_node.cpp
HEADERS += \
Helpers/util.h \
Helpers/token.h \
Nodes/call_node.h \
Nodes/construct_node.h \
Nodes/klass_node.h \
Nodes/op_node.h \
Nodes/block_node.h \
Nodes/constant_node.h \
Nodes/error.h \
Nodes/function_node.h \
Nodes/if_node.h \
Nodes/node.h \
Nodes/param_node.h \
Nodes/program_node.h \
Nodes/return_node.h \
Nodes/simple_node.h \
Parser/lex_token.h \
Parser/parser.tab.h \
Nodes/context.h \
Nodes/declare_node.h