-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathc_compiler.pro
33 lines (30 loc) · 894 Bytes
/
c_compiler.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
TEMPLATE = app
CONFIG += console c++11
CONFIG -= app_bundle
CONFIG -= qt
SOURCES += \
main.cpp \
src/LL1_parser/construct_grammar.cpp \
src/LL1_parser/eliminate_left_recursion.cpp \
src/LL1_parser/eliminate_left_factoring.cpp \
src/LL1_parser/ll1_grammar.cpp \
src/LL1_parser/parsing.cpp \
src/Lexical/c_lexical.cpp \
src/slr1_parser/slr_parser.cpp \
src/Grammar/grammar.cpp \
src/Grammar/find_first.cpp \
src/Grammar/find_follow.cpp \
src/slr1_parser/slr_string_parsing.cpp \
src/clr1_parser/clr_parser.cpp \
src/clr1_parser/clr_string_parsing.cpp \
src/Parser/parser.cpp \
src/test/ue163062.cpp
HEADERS += \
header/ll1parser.h \
header/lexical_header.h \
header/slr1_parser.h \
header/grammar.h \
header/project_header.h \
header/clr1_parser.h \
header/parser_header.h \
header/ue163062.h