diff options
author | Miikka Heikkinen <miikka.heikkinen@digia.com> | 2009-10-16 10:10:03 +0300 |
---|---|---|
committer | Miikka Heikkinen <miikka.heikkinen@digia.com> | 2009-10-16 11:41:18 +0300 |
commit | 43b39e75e88f7765f5203019a8e371677d69abf1 (patch) | |
tree | 1512a8fdaa784a9c09cb2f578cf803580cb39cac /projects.pro | |
parent | 4f48e43dc4f8237875d7d4a61bf4e55ab92e3941 (diff) | |
download | qt4-tools-43b39e75e88f7765f5203019a8e371677d69abf1.tar.gz |
Corrected QT_BUILD_PARTS handling for Symbian in projects.pro.
Changed QT_BUILD_PARTS to be set in projects.pro only when it's empty
also in Symbian, since configure now correctly sets it in .qmake.cache.
Task-number: QT-1018
Reviewed-by: Janne Koskinen
Diffstat (limited to 'projects.pro')
-rw-r--r-- | projects.pro | 10 |
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) { |