this fixes static builds by ensuring that all dependencies are exported. Task-number: QTBUG-51071 Change-Id: I8e1554b648327ea2fb342b882ce8e439bd6f271d Reviewed-by: Yoann Lopes <yoann.lopes@theqtcompany.com>
27 lines
548 B
Prolog
27 lines
548 B
Prolog
TARGET = qtaudio_windows
|
|
QT += multimedia-private
|
|
|
|
LIBS += -lstrmiids -lole32 -loleaut32
|
|
!wince*:LIBS += -lwinmm
|
|
|
|
HEADERS += \
|
|
qwindowsaudioplugin.h \
|
|
qwindowsaudiodeviceinfo.h \
|
|
qwindowsaudioinput.h \
|
|
qwindowsaudiooutput.h \
|
|
qwindowsaudioutils.h
|
|
|
|
SOURCES += \
|
|
qwindowsaudioplugin.cpp \
|
|
qwindowsaudiodeviceinfo.cpp \
|
|
qwindowsaudioinput.cpp \
|
|
qwindowsaudiooutput.cpp \
|
|
qwindowsaudioutils.cpp
|
|
|
|
OTHER_FILES += \
|
|
windowsaudio.json
|
|
|
|
PLUGIN_TYPE = audio
|
|
PLUGIN_CLASS_NAME = QWindowsAudioPlugin
|
|
load(qt_plugin)
|