mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-07 09:59:55 +00:00
ec6a10ed06
Currently only does probing and does not handle messages from endpoints/devices. In the future we want to do proper monitoring which is well-supported in WASAPI. https://bugzilla.gnome.org/show_bug.cgi?id=792897
18 lines
532 B
Makefile
18 lines
532 B
Makefile
plugin_LTLIBRARIES = libgstwasapi.la
|
|
|
|
libgstwasapi_la_SOURCES = gstwasapi.c \
|
|
gstwasapisrc.c \
|
|
gstwasapisink.c \
|
|
gstwasapiutil.c \
|
|
gstwasapidevice.c
|
|
|
|
libgstwasapi_la_CFLAGS = $(GST_PLUGINS_BASE_CFLAGS) $(GST_BASE_CFLAGS) $(GST_CFLAGS) -DCOBJMACROS=1
|
|
libgstwasapi_la_LIBADD = $(GST_PLUGINS_BASE_LIBS) -lgstaudio-$(GST_API_VERSION) \
|
|
$(GST_BASE_LIBS) $(GST_LIBS) \
|
|
$(WASAPI_LIBS)
|
|
libgstwasapi_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
|
|
|
noinst_HEADERS = gstwasapisrc.h \
|
|
gstwasapisink.h \
|
|
gstwasapiutil.h \
|
|
gstwasapidevice.h
|