summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOswald Buddenhagen <oswald.buddenhagen@digia.com>2013-04-26 13:51:09 +0200
committerThe Qt Project <gerrit-noreply@qt-project.org>2013-05-03 19:37:15 +0200
commit620749e67323d5b34c0bd28460b88b002d46e29c (patch)
tree2bfdd4ea37f7495025a0c3476032de7bc737d04a
parent05b531fc31913ddc46fc9ea8f93f0837a0557bac (diff)
downloadqttools-620749e67323d5b34c0bd28460b88b002d46e29c.tar.gz
parallelize SUBDIRS
Change-Id: Ie1c6e8e479c8f2e758b03175d9250a71e52ce3ce Reviewed-by: Joerg Bornemann <joerg.bornemann@digia.com> Reviewed-by: Friedemann Kleint <Friedemann.Kleint@digia.com>
-rw-r--r--src/assistant/assistant.pro6
-rw-r--r--src/designer/src/components/components.pro1
-rw-r--r--src/designer/src/plugins/plugins.pro1
-rw-r--r--src/designer/src/src.pro5
-rw-r--r--src/src.pro3
5 files changed, 11 insertions, 5 deletions
diff --git a/src/assistant/assistant.pro b/src/assistant/assistant.pro
index b16a1892b..390c9ecd0 100644
--- a/src/assistant/assistant.pro
+++ b/src/assistant/assistant.pro
@@ -1,5 +1,4 @@
TEMPLATE = subdirs
-CONFIG += ordered
SUBDIRS += clucene \
help \
@@ -8,3 +7,8 @@ SUBDIRS += clucene \
qcollectiongenerator \
qhelpconverter
+help.depends = clucene
+assistant.depends = help
+qhelpgenerator.depends = help
+qcollectiongenerator.depends = help
+qhelpconverter.depends = help
diff --git a/src/designer/src/components/components.pro b/src/designer/src/components/components.pro
index 97d79b4bb..dac34e57f 100644
--- a/src/designer/src/components/components.pro
+++ b/src/designer/src/components/components.pro
@@ -1,3 +1,2 @@
TEMPLATE = subdirs
-CONFIG += ordered
SUBDIRS = lib
diff --git a/src/designer/src/plugins/plugins.pro b/src/designer/src/plugins/plugins.pro
index 22de8c957..b7ee66193 100644
--- a/src/designer/src/plugins/plugins.pro
+++ b/src/designer/src/plugins/plugins.pro
@@ -1,5 +1,4 @@
TEMPLATE = subdirs
-CONFIG += ordered
# qtHaveModule(opengl): SUBDIRS += tools/view3d
qtHaveModule(webkitwidgets): SUBDIRS += qwebview
diff --git a/src/designer/src/src.pro b/src/designer/src/src.pro
index 64d1c3708..137a73c88 100644
--- a/src/designer/src/src.pro
+++ b/src/designer/src/src.pro
@@ -1,5 +1,4 @@
TEMPLATE = subdirs
-CONFIG += ordered
SUBDIRS = \
uitools \
@@ -8,3 +7,7 @@ SUBDIRS = \
designer
contains(QT_CONFIG, shared): SUBDIRS += plugins
+
+components.depends = lib
+designer.depends = components
+plugins.depends = lib
diff --git a/src/src.pro b/src/src.pro
index 6891b1765..af3383068 100644
--- a/src/src.pro
+++ b/src/src.pro
@@ -1,5 +1,4 @@
TEMPLATE = subdirs
-CONFIG += ordered
qtHaveModule(widgets) {
no-png {
@@ -10,6 +9,8 @@ qtHaveModule(widgets) {
qtestlib \
designer
# unix:!mac:!embedded:!qpa:SUBDIRS += qtconfig
+
+ linguist.depends = designer
}
}