aboutsummaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authorOswald Buddenhagen <oswald.buddenhagen@digia.com>2013-10-18 13:37:23 +0200
committerThe Qt Project <gerrit-noreply@qt-project.org>2013-10-21 10:39:29 +0200
commit9e0e3207809d50c3622bc6406e3ef03c463a201f (patch)
tree83c83e0af504cb730a3a93e9ec6e6dd46685c3e3 /tools
parent9bbb073592989565ec407c19ec2492dfba9317c4 (diff)
suppress qml import scan for the tools which don't need it
Change-Id: Iefdaf60edbe47d2941a0696d96e7b79a67b46d8d Reviewed-by: Joerg Bornemann <joerg.bornemann@digia.com>
Diffstat (limited to 'tools')
-rw-r--r--tools/qmlbundle/qmlbundle.pro1
-rw-r--r--tools/qmlplugindump/qmlplugindump.pro2
-rw-r--r--tools/qmlprofiler/qmlprofiler.pro1
-rw-r--r--tools/qmlscene/qmlscene.pro1
-rw-r--r--tools/qmltestrunner/qmltestrunner.pro1
5 files changed, 5 insertions, 1 deletions
diff --git a/tools/qmlbundle/qmlbundle.pro b/tools/qmlbundle/qmlbundle.pro
index 89b7477f63..60c5906f65 100644
--- a/tools/qmlbundle/qmlbundle.pro
+++ b/tools/qmlbundle/qmlbundle.pro
@@ -1,4 +1,5 @@
QT = core qml-private core-private
+CONFIG += no_import_scan
SOURCES += main.cpp
diff --git a/tools/qmlplugindump/qmlplugindump.pro b/tools/qmlplugindump/qmlplugindump.pro
index 0829173abe..5c225948dd 100644
--- a/tools/qmlplugindump/qmlplugindump.pro
+++ b/tools/qmlplugindump/qmlplugindump.pro
@@ -1,6 +1,6 @@
QT += qml qml-private quick-private core-private
-CONFIG += qpa_minimal_plugin
+CONFIG += no_import_scan qpa_minimal_plugin
SOURCES += \
main.cpp \
diff --git a/tools/qmlprofiler/qmlprofiler.pro b/tools/qmlprofiler/qmlprofiler.pro
index a939612c67..4fa36f5127 100644
--- a/tools/qmlprofiler/qmlprofiler.pro
+++ b/tools/qmlprofiler/qmlprofiler.pro
@@ -1,4 +1,5 @@
QT = qml qml-private network core-private
+CONFIG += no_import_scan
SOURCES += main.cpp \
qmlprofilerapplication.cpp \
diff --git a/tools/qmlscene/qmlscene.pro b/tools/qmlscene/qmlscene.pro
index 719110ad71..07208ea703 100644
--- a/tools/qmlscene/qmlscene.pro
+++ b/tools/qmlscene/qmlscene.pro
@@ -1,5 +1,6 @@
QT += qml quick core-private
qtHaveModule(widgets): QT += widgets
+CONFIG += no_import_scan
SOURCES += main.cpp
diff --git a/tools/qmltestrunner/qmltestrunner.pro b/tools/qmltestrunner/qmltestrunner.pro
index 5184c1f1a4..1bb913e718 100644
--- a/tools/qmltestrunner/qmltestrunner.pro
+++ b/tools/qmltestrunner/qmltestrunner.pro
@@ -1,5 +1,6 @@
SOURCES += main.cpp
QT += qml qmltest
+CONFIG += no_import_scan
load(qt_tool)