diff options
author | Peter Hartmann <phartmann@rim.com> | 2012-11-20 18:18:45 (GMT) |
---|---|---|
committer | The Qt Project <gerrit-noreply@qt-project.org> | 2012-11-23 09:20:20 (GMT) |
commit | 9d8980deec64c0ffebc8bd9b8504d0406b11600b (patch) | |
tree | 96f3e8996b892788a722785c314f8e136bd3506e /tests | |
parent | c1b42ed98203d74089d3124a52f87f1b8de3ee84 (diff) | |
download | Qt-9d8980deec64c0ffebc8bd9b8504d0406b11600b.zip Qt-9d8980deec64c0ffebc8bd9b8504d0406b11600b.tar.gz Qt-9d8980deec64c0ffebc8bd9b8504d0406b11600b.tar.bz2 |
auto tests: only build help autotests when not cross-compiling
... because QtHelp and all other tools are only built when not cross-
compiling.
In Qt5, this is already fixed in the qttools repo.
Change-Id: I151f8b4abe129def9f5f3717e72dea7dbd31fd73
Reviewed-by: Friedemann Kleint <Friedemann.Kleint@digia.com>
Diffstat (limited to 'tests')
-rw-r--r-- | tests/auto/auto.pro | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/auto/auto.pro b/tests/auto/auto.pro index 161de03..2332f8f 100644 --- a/tests/auto/auto.pro +++ b/tests/auto/auto.pro @@ -19,5 +19,5 @@ contains(QT_CONFIG, multimedia): SUBDIRS += multimedia.pro contains(QT_CONFIG, phonon): SUBDIRS += phonon.pro contains(QT_CONFIG, svg): SUBDIRS += svg.pro contains(QT_CONFIG, declarative): SUBDIRS += declarative.pro -!symbian: SUBDIRS += help.pro +!cross_compile: SUBDIRS += help.pro |