Fix build without features.qml-interpreter

Change-Id: I5f9c00541c27377e8310d32bf045c2860eeffcb4
Reviewed-by: Oswald Buddenhagen <oswald.buddenhagen@qt.io>
This commit is contained in:
Tasuku Suzuki 2017-04-03 15:46:29 +09:00 committed by Stephan Binner
parent df66e9264d
commit 85eaae8b4c
2 changed files with 17 additions and 14 deletions

View File

@ -1,5 +1,5 @@
TEMPLATE = subdirs
QT_FOR_CONFIG += qml
QT_FOR_CONFIG += qml-private
# Utilities
SUBDIRS += \
@ -10,25 +10,28 @@ SUBDIRS += \
qmldbg_native \
qmldbg_server
qmldbg_native.depends = packetprotocol
qmldbg_server.depends = packetprotocol
qtConfig(qml-network) {
SUBDIRS += \
qmldbg_local \
qmldbg_tcp
}
# Services
SUBDIRS += \
qmldbg_debugger \
qmldbg_profiler \
qmldbg_messages \
qmldbg_nativedebugger
qtConfig(qml-interpreter) {
# Services
SUBDIRS += \
qmldbg_debugger \
qmldbg_profiler \
qmldbg_messages \
qmldbg_nativedebugger
qmldbg_server.depends = packetprotocol
qmldbg_native.depends = packetprotocol
qmldbg_debugger.depends = packetprotocol
qmldbg_profiler.depends = packetprotocol
qmldbg_messages.depends = packetprotocol
qmldbg_nativedebugger.depends = packetprotocol
qmldbg_debugger.depends = packetprotocol
qmldbg_profiler.depends = packetprotocol
qmldbg_messages.depends = packetprotocol
qmldbg_nativedebugger.depends = packetprotocol
}
qtHaveModule(quick) {
SUBDIRS += \

View File

@ -182,7 +182,7 @@ ExecutionEngine::ExecutionEngine(EvalISelFactory *factory)
"solutions for your platform.");
}
#else
factory = new JIT::ISelFactory;
factory = new JIT::ISelFactory<>;
#endif
}
iselFactory.reset(factory);