mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-08 18:39:54 +00:00
d27662fdcd
CLSIDFromString() requires ole32.dll.
See https://msdn.microsoft.com/en-us/library/windows/desktop/ms680589%28v=vs.85%29.aspx
CLSIDFromString() is introduced at
f9464ce354
.
https://bugzilla.gnome.org/show_bug.cgi?id=764523
12 lines
554 B
Makefile
12 lines
554 B
Makefile
plugin_LTLIBRARIES = libgstdirectsoundsrc.la
|
|
|
|
libgstdirectsoundsrc_la_SOURCES = gstdirectsoundsrc.c gstdirectsoundplugin.c
|
|
libgstdirectsoundsrc_la_CFLAGS = $(GST_CFLAGS) $(GST_BASE_CFLAGS) \
|
|
$(GST_PLUGINS_BASE_CFLAGS) $(DIRECTX_CFLAGS)
|
|
libgstdirectsoundsrc_la_LIBADD = \
|
|
$(GST_BASE_LIBS) $(GST_PLUGINS_BASE_LIBS) -lgstaudio-$(GST_API_VERSION) \
|
|
$(DIRECTX_LDFLAGS) $(DIRECTSOUND_LIBS) -lole32
|
|
libgstdirectsoundsrc_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
|
libgstdirectsoundsrc_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS)
|
|
|
|
noinst_HEADERS= gstdirectsoundsrc.h
|