diff options
author | Gareth Stockwell <ext-gareth.stockwell@nokia.com> | 2010-02-18 14:10:03 (GMT) |
---|---|---|
committer | Gareth Stockwell <ext-gareth.stockwell@nokia.com> | 2010-02-18 16:35:34 (GMT) |
commit | 28610950d2efb0b543ede40512f6172c37c78698 (patch) | |
tree | 3e10142d0cfa6556d60baa66c3680e87a638e144 /src/plugins/audio/symbian/symbian.pro | |
parent | b76e3e5f4e9cad5c2e7331031e5a44868616105e (diff) | |
download | Qt-28610950d2efb0b543ede40512f6172c37c78698.zip Qt-28610950d2efb0b543ede40512f6172c37c78698.tar.gz Qt-28610950d2efb0b543ede40512f6172c37c78698.tar.bz2 |
Symbian backend for QtMultimedia audio
Task-number: QT-567
Diffstat (limited to 'src/plugins/audio/symbian/symbian.pro')
-rw-r--r-- | src/plugins/audio/symbian/symbian.pro | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/src/plugins/audio/symbian/symbian.pro b/src/plugins/audio/symbian/symbian.pro new file mode 100644 index 0000000..7355daa --- /dev/null +++ b/src/plugins/audio/symbian/symbian.pro @@ -0,0 +1,31 @@ +QT += multimedia +TARGET = qaudio + +# Paths to DevSound headers +INCLUDEPATH += /epoc32/include/mmf/common +INCLUDEPATH += /epoc32/include/mmf/server + +HEADERS += \ + symbianaudio.h \ + symbianaudiodeviceinfo.h \ + symbianaudioinput.h \ + symbianaudiooutput.h \ + symbianaudioutils.h + +SOURCES += \ + main.cpp \ + symbianaudiodeviceinfo.cpp \ + symbianaudioinput.cpp \ + symbianaudiooutput.cpp \ + symbianaudioutils.cpp + +LIBS += -lmmfdevsound + +QTDIR_build:DESTDIR = $$QT_BUILD_TREE/plugins/audio +target.path = $$[QT_INSTALL_PLUGINS]/audio +INSTALLS += target + +include(../../qpluginbase.pri) + +TARGET.UID3 = 0x2001E630 + |