adjust to new "configure -nomake tools" semantics
authorOswald Buddenhagen <oswald.buddenhagen@digia.com>
Thu, 25 Apr 2013 18:02:44 +0000 (20:02 +0200)
committerThe Qt Project <gerrit-noreply@qt-project.org>
Wed, 8 May 2013 13:01:47 +0000 (15:01 +0200)
Change-Id: I34ea6a8ea5f6f2641bf5deaf2a7136e5ed51a8ba
Reviewed-by: Alan Alpert (Personal) <416365416c@gmail.com>
qtdeclarative.pro
tests/auto/qml/qml.pro
tools/tools.pro

index 58c33f2..8bc15a5 100644 (file)
@@ -1 +1,2 @@
+CONFIG += tests_need_tools
 load(qt_parts)
index b973d44..ed828df 100644 (file)
@@ -69,3 +69,7 @@ SUBDIRS += debugger
 contains(QT_CONFIG, private_tests) {
     SUBDIRS += $$PRIVATETESTS
 }
+
+qtNomakeTools( \
+    qmlplugindump \
+)
index 86e2f38..eda9e85 100644 (file)
@@ -6,3 +6,14 @@ SUBDIRS += \
     qmlprofiler \
     qmlbundle
 qtHaveModule(quick):qtHaveModule(widgets): SUBDIRS += qmleasing
+
+# qmlmin & qmlbundle are build tools.
+# qmlscene is needed by the autotests.
+# qmltestrunner may be useful for manual testing.
+# qmlplugindump cannot be a build tool, because it loads target plugins.
+# The other apps are mostly "desktop" tools and are thus excluded.
+qtNomakeTools( \
+    qmlprofiler \
+    qmlplugindump \
+    qmleasing \
+)