aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins
diff options
context:
space:
mode:
authorUlf Hermann <ulf.hermann@qt.io>2017-09-19 17:49:08 +0200
committerUlf Hermann <ulf.hermann@qt.io>2017-09-21 12:24:11 +0000
commit6334ae9fa983d03d0591e11d0be58bbbc4d45270 (patch)
tree373750aa7fde19f49aa0525866560662b3a16eed /src/plugins
parent82fbaa78f3840bcc289adc4e1ec64e337346f148 (diff)
QML Tooling: Not all debug services need the interpreter
You can use the debug messages and profiler services on the JIT just fine. In fact you shouldn't use the profiler on an interpreter if you have a JIT. Change-Id: I6d0729ddfe6c978e6d1405980ae0dcdf8de3f30c Reviewed-by: Simon Hausmann <simon.hausmann@qt.io>
Diffstat (limited to 'src/plugins')
-rw-r--r--src/plugins/qmltooling/qmltooling.pro12
1 files changed, 7 insertions, 5 deletions
diff --git a/src/plugins/qmltooling/qmltooling.pro b/src/plugins/qmltooling/qmltooling.pro
index 27c51b53c8..5895169ca0 100644
--- a/src/plugins/qmltooling/qmltooling.pro
+++ b/src/plugins/qmltooling/qmltooling.pro
@@ -19,17 +19,19 @@ qtConfig(qml-network) {
qmldbg_tcp
}
+# Services
+SUBDIRS += \
+ qmldbg_messages \
+ qmldbg_profiler
+qmldbg_messages.depends = packetprotocol
+qmldbg_profiler.depends = packetprotocol
+
qtConfig(qml-interpreter) {
- # Services
SUBDIRS += \
qmldbg_debugger \
- qmldbg_profiler \
- qmldbg_messages \
qmldbg_nativedebugger
qmldbg_debugger.depends = packetprotocol
- qmldbg_profiler.depends = packetprotocol
- qmldbg_messages.depends = packetprotocol
qmldbg_nativedebugger.depends = packetprotocol
}