diff options
author | Alex <qt-info@nokia.com> | 2010-08-11 04:32:51 (GMT) |
---|---|---|
committer | Alex <qt-info@nokia.com> | 2010-08-11 04:32:51 (GMT) |
commit | 0d4d065cc9757159c5b6fa817892f5707bc1ecae (patch) | |
tree | a25a40e92da01da0da2065c38a3acf502c8437ce | |
parent | 02b0b0af952960f451a3aac570a2df0cc084bce7 (diff) | |
download | Qt-0d4d065cc9757159c5b6fa817892f5707bc1ecae.zip Qt-0d4d065cc9757159c5b6fa817892f5707bc1ecae.tar.gz Qt-0d4d065cc9757159c5b6fa817892f5707bc1ecae.tar.bz2 |
Don't build bearercloud example if Qt was build w/o SVG support
Task-number: QTBUG-12791
Reviewed-by: David Laing
-rw-r--r-- | examples/network/network.pro | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/examples/network/network.pro b/examples/network/network.pro index 16c4087..458561a 100644 --- a/examples/network/network.pro +++ b/examples/network/network.pro @@ -16,9 +16,12 @@ SUBDIRS = \ threadedfortuneserver \ googlesuggest \ torrent \ - bearercloud \ bearermonitor + contains(QT_CONFIG, svg) { + SUBDIRS += bearercloud + } + # no QProcess !vxworks:!qnx:SUBDIRS += network-chat |