mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-03 16:09:39 +00:00
25 lines
875 B
Makefile
25 lines
875 B
Makefile
|
|
plugin_LTLIBRARIES = libgstopensles.la
|
|
|
|
libgstopensles_la_SOURCES = openslescommon.c \
|
|
openslesringbuffer.c \
|
|
openslessink.c \
|
|
openslessrc.c \
|
|
opensles.c
|
|
|
|
libgstopensles_la_CFLAGS = $(GST_PLUGINS_BASE_CFLAGS) $(GST_CFLAGS) \
|
|
-Wno-deprecated-declarations
|
|
libgstopensles_la_LIBADD = \
|
|
-lgstaudio-@GST_API_VERSION@ \
|
|
$(GST_PLUGINS_BASE_LIBS) \
|
|
$(GST_BASE_LIBS) \
|
|
$(GST_LIBS)
|
|
libgstopensles_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS) -lOpenSLES
|
|
libgstopensles_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS)
|
|
|
|
noinst_HEADERS = openslescommon.h \
|
|
openslesringbuffer.h \
|
|
openslessink.h \
|
|
openslessrc.h \
|
|
opensles.h
|
|
|