aboutsummaryrefslogtreecommitdiffstats
path: root/src/qml/compiler/compiler.pri
diff options
context:
space:
mode:
authorLars Knoll <lars.knoll@digia.com>2013-08-08 09:20:52 +0200
committerThe Qt Project <gerrit-noreply@qt-project.org>2013-08-08 12:22:30 +0200
commit3288b87e2f75278c7415fbc7c4574bcf7da71295 (patch)
tree95df1e3f0eb76419e780da08b24fae28dc68c580 /src/qml/compiler/compiler.pri
parent2d9262a4c6680e3818bf7c07a4d1cfa32b4c9dfe (diff)
Restructure source code
Move the v4 engine classes from a subdir of qml/qml into two subdirs (compiler and jsruntime) of the qml module Remove an unsued qv4syntaxchecker class, and move the moth code directly into compiler. Change-Id: I6929bede1f25098e6cb2e68087e779fac16b0c68 Reviewed-by: Simon Hausmann <simon.hausmann@digia.com>
Diffstat (limited to 'src/qml/compiler/compiler.pri')
-rw-r--r--src/qml/compiler/compiler.pri27
1 files changed, 27 insertions, 0 deletions
diff --git a/src/qml/compiler/compiler.pri b/src/qml/compiler/compiler.pri
new file mode 100644
index 0000000000..61578fd011
--- /dev/null
+++ b/src/qml/compiler/compiler.pri
@@ -0,0 +1,27 @@
+include(../../3rdparty/masm/masm-defs.pri)
+
+INCLUDEPATH += $$PWD
+INCLUDEPATH += $$OUT_PWD
+
+HEADERS += \
+ $$PWD/qv4codegen_p.h \
+ $$PWD/qv4isel_masm_p.h \
+ $$PWD/qv4isel_p.h \
+ $$PWD/qv4jsir_p.h \
+ $$PWD/qv4vme_moth_p.h \
+ $$PWD/qv4instr_moth_p.h \
+ $$PWD/qv4isel_moth_p.h \
+ $$PWD/qv4isel_util_p.h \
+ $$PWD/qv4ssa_p.h
+
+SOURCES += \
+ $$PWD/qv4codegen.cpp \
+ $$PWD/qv4instr_moth.cpp \
+ $$PWD/qv4isel_masm.cpp \
+ $$PWD/qv4isel_moth.cpp \
+ $$PWD/qv4isel_p.cpp \
+ $$PWD/qv4jsir.cpp \
+ $$PWD/qv4ssa.cpp \
+ $$PWD/qv4vme_moth.cpp
+
+include(../../3rdparty/masm/masm.pri)