Blackberry: Enable support for audioengine if available

BB10 ships OpenAL, so the audio engine works there.

Change-Id: I49ba6201788cb41cabb1670522dc97a36fd5f2c2
Reviewed-by: Kevin Ottens <kevin.ottens.qnx@kdab.com>
Reviewed-by: Sean Harmer <sean.harmer@kdab.com>
This commit is contained in:
Thomas McGuire
2012-10-30 15:20:38 +01:00
committed by The Qt Project
parent 7319c194cd
commit 80a6b173b3
2 changed files with 4 additions and 2 deletions

View File

@@ -1,6 +1,7 @@
SOURCES += main.cpp SOURCES += main.cpp
win32: LIBS += -lOpenAL32 win32: LIBS += -lOpenAL32
unix:!mac: LIBS += -lopenal unix:!mac:!blackberry: LIBS += -lopenal
blackberry: LIBS += -lOpenAL
mac: LIBS += -framework OpenAL mac: LIBS += -framework OpenAL
mac: DEFINES += HEADER_OPENAL_PREFIX mac: DEFINES += HEADER_OPENAL_PREFIX

View File

@@ -6,7 +6,8 @@ IMPORT_VERSION = 1.0
QT += quick qml multimedia-private QT += quick qml multimedia-private
win32: LIBS += -lOpenAL32 win32: LIBS += -lOpenAL32
unix:!mac: LIBS += -lopenal unix:!mac:!blackberry: LIBS += -lopenal
blackberry: LIBS += -lOpenAL
mac: LIBS += -framework OpenAL mac: LIBS += -framework OpenAL
mac: DEFINES += HEADER_OPENAL_PREFIX mac: DEFINES += HEADER_OPENAL_PREFIX