summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlex Blasche <alexander.blasche@digia.com>2014-02-28 09:24:45 +0100
committerThe Qt Project <gerrit-noreply@qt-project.org>2014-02-28 13:24:25 +0100
commit6c90b603cff92834ac7f58610fc6982ec801f2fd (patch)
tree8d5267b418aa8e646a978556c30fc113d590d105
parent3f830f2c56579092c6e4373bf7a107c9dc8eb845 (diff)
Add dependencies to project file.
CONFIG += ordered is inefficient and was replaced by proper dependencies. Change-Id: I7328ac428758d1719a2ae820a403d25b66de2ab4 Reviewed-by: Fabian Bumberger <fbumberger@rim.com>
-rw-r--r--src/src.pro7
1 files changed, 5 insertions, 2 deletions
diff --git a/src/src.pro b/src/src.pro
index 47ab514a..1b937f61 100644
--- a/src/src.pro
+++ b/src/src.pro
@@ -1,6 +1,9 @@
TEMPLATE = subdirs
-CONFIG += ordered
SUBDIRS += bluetooth nfc
android: SUBDIRS += android
-qtHaveModule(quick): SUBDIRS += imports
+
+qtHaveModule(quick) {
+ imports.depends += bluetooth nfc
+ SUBDIRS += imports
+}