summaryrefslogtreecommitdiffstats
path: root/src/plugins
diff options
context:
space:
mode:
authorThomas Zander <t.zander@nokia.com>2010-05-04 12:15:24 (GMT)
committerThomas Zander <t.zander@nokia.com>2010-05-04 12:15:24 (GMT)
commit33664eaa591b4325f83643d8c8a21476b1306c34 (patch)
tree0289aa3d18fb203a51f7f1f80db2d5c649044e7d /src/plugins
parent172897759333186169e23f82097773beabea567f (diff)
downloadQt-33664eaa591b4325f83643d8c8a21476b1306c34.zip
Qt-33664eaa591b4325f83643d8c8a21476b1306c34.tar.gz
Qt-33664eaa591b4325f83643d8c8a21476b1306c34.tar.bz2
Disable compiling of the plugin when extra package not found
The plugin will only compile when the symbian audiorouting API is installed which is not there by default. So check for that. The configure check should be added soon too.
Diffstat (limited to 'src/plugins')
-rw-r--r--src/plugins/mediaservices/mediaservices.pro4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/plugins/mediaservices/mediaservices.pro b/src/plugins/mediaservices/mediaservices.pro
index 27f05bc..0f0b021 100644
--- a/src/plugins/mediaservices/mediaservices.pro
+++ b/src/plugins/mediaservices/mediaservices.pro
@@ -9,5 +9,7 @@ contains(QT_CONFIG, media-backend) {
SUBDIRS += gstreamer
}
- symbian:SUBDIRS += symbian
+ symbian:contains(QT_CONFIG, audio-routing-available) {
+ SUBDIRS += symbian
+ }
}