diff options
author | Jonas Rabbe <jonas.rabbe@nokia.com> | 2011-08-26 10:59:19 +1000 |
---|---|---|
committer | Qt by Nokia <qt-info@nokia.com> | 2011-08-26 06:10:10 +0200 |
commit | 7535629ecb4a4af6c003ea0b3ba7e5eca6f1d847 (patch) | |
tree | e41a72783d653a62b06849dad66d184a41cc2589 /src/plugins/plugins.pro | |
parent | f60838dcfd30c27ac0c8925f605a5f3c9eb7fc6c (diff) | |
download | qtmultimedia-7535629ecb4a4af6c003ea0b3ba7e5eca6f1d847.tar.gz |
Introduction of fake radio backend to enable testing the radio APIs
Includes some behavior for all standard methods.
Also fixes a typo in qradiotunercontrol.h and a couple of minor
bugs in the radio example that came to light using this new
backend.
Change-Id: I65b8b8715a46f0fd702f9630ea81f7d5df527055
Reviewed-on: http://codereview.qt.nokia.com/3619
Reviewed-by: Qt Sanity Bot <qt_sanity_bot@ovi.com>
Reviewed-by: Dmytro Poplavskiy <dmytro.poplavskiy@nokia.com>
Reviewed-by: Michael Goddard <michael.goddard@nokia.com>
Diffstat (limited to 'src/plugins/plugins.pro')
-rw-r--r-- | src/plugins/plugins.pro | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/plugins/plugins.pro b/src/plugins/plugins.pro index bc82c60b3..15a25b3d5 100644 --- a/src/plugins/plugins.pro +++ b/src/plugins/plugins.pro @@ -33,7 +33,8 @@ unix:!mac { SUBDIRS += audiocapture } - !maemo*:SUBDIRS += v4l + # v4l is turned off because it is not supported in Qt 5 + # !maemo*:SUBDIRS += v4l contains(config_test_pulseaudio, yes) { SUBDIRS += pulseaudio @@ -44,3 +45,7 @@ mac:!simulator { SUBDIRS += audiocapture !qpa: SUBDIRS += qt7 } + +# fake radio to test the radio APIs +SUBDIRS += fakeradio + |