diff options
author | Shane Kearns <shane.kearns@accenture.com> | 2010-10-12 11:04:29 (GMT) |
---|---|---|
committer | Shane Kearns <shane.kearns@accenture.com> | 2010-10-12 12:59:10 (GMT) |
commit | 1f8b697da6c6606d57a003666d35115ad72860f2 (patch) | |
tree | 575617a55c5cb78458319134f8f0692571ab724f /tests/auto/qapplication | |
parent | f1f39af98afb2129daa5db2686200907de4c0999 (diff) | |
download | Qt-1f8b697da6c6606d57a003666d35115ad72860f2.zip Qt-1f8b697da6c6606d57a003666d35115ad72860f2.tar.gz Qt-1f8b697da6c6606d57a003666d35115ad72860f2.tar.bz2 |
Fix deployment for examples and tests
Due to the change from default deployment in symbian from being hardcoded
in qmake to being in default_deployment.prf the .pro files needed to be
changed.
Specifically, "DEPLOYMENT = foo" needs to be "DEPLOYMENT += foo" otherwise
the default deployment lines are not added and the test won't install.
Reviewed-By: Miikka Heikkinen
Diffstat (limited to 'tests/auto/qapplication')
-rw-r--r-- | tests/auto/qapplication/test/test.pro | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/auto/qapplication/test/test.pro b/tests/auto/qapplication/test/test.pro index 2c54c37..e1193c2 100644 --- a/tests/auto/qapplication/test/test.pro +++ b/tests/auto/qapplication/test/test.pro @@ -8,7 +8,7 @@ wince* { additional.path = desktopsettingsaware someTest.sources = test.pro someTest.path = test - DEPLOYMENT = additional deploy someTest + DEPLOYMENT += additional deploy someTest } symbian: { @@ -17,7 +17,7 @@ symbian: { someTest.sources = test.pro someTest.path = test windowIcon.sources = ../heart.svg - DEPLOYMENT = additional deploy someTest windowIcon + DEPLOYMENT += additional deploy someTest windowIcon LIBS += -lcone -lavkon } |