aboutsummaryrefslogtreecommitdiffstats
path: root/src/qmlcompiler/qmlcompiler.pro
diff options
context:
space:
mode:
Diffstat (limited to 'src/qmlcompiler/qmlcompiler.pro')
-rw-r--r--src/qmlcompiler/qmlcompiler.pro25
1 files changed, 25 insertions, 0 deletions
diff --git a/src/qmlcompiler/qmlcompiler.pro b/src/qmlcompiler/qmlcompiler.pro
new file mode 100644
index 0000000000..906286551f
--- /dev/null
+++ b/src/qmlcompiler/qmlcompiler.pro
@@ -0,0 +1,25 @@
+option(host_build)
+TARGET = QtQmlCompiler
+QT = core-private qmldevtools-private
+CONFIG += internal_module
+
+SOURCES = \
+ resourcefilemapper.cpp \
+ importedmembersvisitor.cpp \
+ qmljsimporter.cpp \
+ qmljstypereader.cpp \
+ scopetree.cpp \
+ typedescriptionreader.cpp \
+ qmlstreamwriter.cpp
+
+HEADERS = \
+ resourcefilemapper_p.h \
+ importedmembersvisitor_p.h \
+ qmljsimporter_p.h \
+ qmljstypereader_p.h \
+ metatypes_p.h \
+ scopetree_p.h \
+ typedescriptionreader_p.h \
+ qmlstreamwriter_p.h
+
+load(qt_module)