aboutsummaryrefslogtreecommitdiffstats
path: root/src/lib/parser/parser.pri
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/parser/parser.pri')
-rw-r--r--src/lib/parser/parser.pri23
1 files changed, 23 insertions, 0 deletions
diff --git a/src/lib/parser/parser.pri b/src/lib/parser/parser.pri
new file mode 100644
index 000000000..8ce19ae18
--- /dev/null
+++ b/src/lib/parser/parser.pri
@@ -0,0 +1,23 @@
+INCLUDEPATH += $$PWD
+
+HEADERS += \
+ $$PWD/qmljsast_p.h \
+ $$PWD/qmljsastfwd_p.h \
+ $$PWD/qmljsastvisitor_p.h \
+ $$PWD/qmljsengine_p.h \
+ $$PWD/qmljsgrammar_p.h \
+ $$PWD/qmljslexer_p.h \
+ $$PWD/qmljsmemorypool_p.h \
+ $$PWD/qmljsnodepool_p.h \
+ $$PWD/qmljsparser_p.h \
+ $$PWD/qmljsglobal_p.h \
+ $$PWD/qmlerror.h
+
+SOURCES += \
+ $$PWD/qmljsast.cpp \
+ $$PWD/qmljsastvisitor.cpp \
+ $$PWD/qmljsengine_p.cpp \
+ $$PWD/qmljsgrammar.cpp \
+ $$PWD/qmljslexer.cpp \
+ $$PWD/qmljsparser.cpp \
+ $$PWD/qmlerror.cpp