blob: 7355daa03991d4c74a19713ba3f12904e009797b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
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
|