diff options
author | Miikka Heikkinen <miikka.heikkinen@digia.com> | 2009-05-26 08:26:39 (GMT) |
---|---|---|
committer | Miikka Heikkinen <miikka.heikkinen@digia.com> | 2009-05-26 08:26:39 (GMT) |
commit | a83bc9473e340cce2ff84c614a1d6b42ced9dfa2 (patch) | |
tree | 2005a269b72bb996c795cbf3f0b7a5a3ff327e4e /tests/auto/qlibrary | |
parent | 269ae27faccb81ba3aacd1723edad13885b991d4 (diff) | |
download | Qt-a83bc9473e340cce2ff84c614a1d6b42ced9dfa2.zip Qt-a83bc9473e340cce2ff84c614a1d6b42ced9dfa2.tar.gz Qt-a83bc9473e340cce2ff84c614a1d6b42ced9dfa2.tar.bz2 |
Disabled building two versions of same library in qlibrary autotest for Symbian,
as version tests are disabled in Symbian anyway.
Diffstat (limited to 'tests/auto/qlibrary')
-rw-r--r-- | tests/auto/qlibrary/qlibrary.pro | 13 |
1 files changed, 10 insertions, 3 deletions
diff --git a/tests/auto/qlibrary/qlibrary.pro b/tests/auto/qlibrary/qlibrary.pro index 9ba49ee..fd5790b 100644 --- a/tests/auto/qlibrary/qlibrary.pro +++ b/tests/auto/qlibrary/qlibrary.pro @@ -1,9 +1,16 @@ QT -= gui TEMPLATE = subdirs CONFIG += ordered -SUBDIRS = lib \ - lib2 \ - tst + +symbian: { +# Can't build two versions of lib with same name in symbian, so just build one +SUBDIRS = lib2 \ + tst +} else { +SUBDIRS = lib \ + lib2 \ + tst +} TARGET = tst_qlibrary # no special install rule for subdir |