summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--projects.pro10
1 files changed, 5 insertions, 5 deletions
diff --git a/projects.pro b/projects.pro
index 2a6a956a47..aa1eb71086 100644
--- a/projects.pro
+++ b/projects.pro
@@ -8,7 +8,11 @@ TEMPLATE = subdirs
cross_compile: CONFIG += nostrip
isEmpty(QT_BUILD_PARTS) { #defaults
- QT_BUILD_PARTS = libs tools examples demos docs translations
+ symbian {
+ QT_BUILD_PARTS = libs tools examples demos
+ } else {
+ QT_BUILD_PARTS = libs tools examples demos docs translations
+ }
} else { #make sure the order makes sense
contains(QT_BUILD_PARTS, translations) {
QT_BUILD_PARTS -= translations
@@ -28,10 +32,6 @@ isEmpty(QT_BUILD_PARTS) { #defaults
}
}
-symbian {
- QT_BUILD_PARTS = libs tools examples demos
-}
-
#process the projects
for(PROJECT, $$list($$lower($$unique(QT_BUILD_PARTS)))) {
isEqual(PROJECT, tools) {