gstreamer/sys/opensles/Makefile.am
Josep Torra f6aa2f29bc opensles: Add initial draft implementation of OpenSL ES plugin.
Initial draft implementation for a OpenSL ES based plugin for Android
that provides audio src and sink.
2012-10-18 14:03:08 +02:00

27 lines
825 B
Makefile

plugin_LTLIBRARIES = libgstopensles.la
libgstopensles_la_SOURCES = openslesringbuffer.c \
openslessink.c \
openslessrc.c \
opensles.c
libgstopensles_la_CFLAGS = $(GST_PLUGINS_BASE_CFLAGS) $(GST_CFLAGS) \
-Wno-deprecated-declarations
libgstopensles_la_LIBADD = \
-lgstinterfaces-@GST_MAJORMINOR@ \
-lgstaudio-@GST_MAJORMINOR@ \
$(GST_PLUGINS_BASE_LIBS) \
$(GST_BASE_LIBS) \
$(GST_LIBS)
libgstopensles_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS) -lOpenSLES
if !GST_PLUGIN_BUILD_STATIC
libgstopensles_la_LIBTOOLFLAGS = --tag=disable-static --tag=CC
endif
noinst_HEADERS = openslesringbuffer.h \
openslessink.h \
openslessrc.h