1HEADERS += \
2    $$PWD/cppassert.h \
3    $$PWD/CPlusPlus.h \
4    $$PWD/AST.h \
5    $$PWD/ASTVisitor.h \
6    $$PWD/ASTMatcher.h \
7    $$PWD/ASTPatternBuilder.h \
8    $$PWD/ASTfwd.h \
9    $$PWD/Matcher.h \
10    $$PWD/CPlusPlusForwardDeclarations.h \
11    $$PWD/Control.h \
12    $$PWD/CoreTypes.h \
13    $$PWD/DiagnosticClient.h \
14    $$PWD/FullySpecifiedType.h \
15    $$PWD/Lexer.h \
16    $$PWD/LiteralTable.h \
17    $$PWD/Literals.h \
18    $$PWD/MemoryPool.h \
19    $$PWD/Name.h \
20    $$PWD/NameVisitor.h \
21    $$PWD/Names.h \
22    $$PWD/Parser.h \
23    $$PWD/Scope.h \
24    $$PWD/Bind.h \
25    $$PWD/Symbol.h \
26    $$PWD/Symbols.h \
27    $$PWD/SymbolVisitor.h \
28    $$PWD/Token.h \
29    $$PWD/TranslationUnit.h \
30    $$PWD/Type.h \
31    $$PWD/TypeVisitor.h \
32    $$PWD/ObjectiveCTypeQualifiers.h \
33    $$PWD/QtContextKeywords.h \
34    $$PWD/Templates.h \
35    $$PWD/SafeMatcher.h
36
37SOURCES += \
38    $$PWD/AST.cpp \
39    $$PWD/ASTVisit.cpp \
40    $$PWD/ASTMatch0.cpp \
41    $$PWD/ASTVisitor.cpp \
42    $$PWD/ASTClone.cpp \
43    $$PWD/ASTMatcher.cpp \
44    $$PWD/Matcher.cpp \
45    $$PWD/Control.cpp \
46    $$PWD/CoreTypes.cpp \
47    $$PWD/DiagnosticClient.cpp \
48    $$PWD/FullySpecifiedType.cpp \
49    $$PWD/Keywords.cpp \
50    $$PWD/ObjectiveCAtKeywords.cpp \
51    $$PWD/ObjectiveCTypeQualifiers.cpp \
52    $$PWD/Lexer.cpp \
53    $$PWD/Literals.cpp \
54    $$PWD/MemoryPool.cpp \
55    $$PWD/Name.cpp \
56    $$PWD/NameVisitor.cpp \
57    $$PWD/Names.cpp \
58    $$PWD/Parser.cpp \
59    $$PWD/Scope.cpp \
60    $$PWD/Bind.cpp \
61    $$PWD/Symbol.cpp \
62    $$PWD/Symbols.cpp \
63    $$PWD/Token.cpp \
64    $$PWD/TranslationUnit.cpp \
65    $$PWD/Type.cpp \
66    $$PWD/TypeVisitor.cpp \
67    $$PWD/QtContextKeywords.cpp \
68    $$PWD/Templates.cpp \
69    $$PWD/SafeMatcher.cpp
70