mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-03 16:09:39 +00:00
7d06ecb3a4
Also rename unit test dash_isoff to isoff https://bugzilla.gnome.org/show_bug.cgi?id=777825
34 lines
971 B
Makefile
34 lines
971 B
Makefile
|
|
plugin_LTLIBRARIES = libgstdashdemux.la
|
|
|
|
libgstdashdemux_la_SOURCES = \
|
|
gstmpdparser.c \
|
|
gstdashdemux.c \
|
|
gstplugin.c
|
|
|
|
# headers we need but don't want installed
|
|
noinst_HEADERS = \
|
|
gstmpdparser.h \
|
|
gstdashdemux.h \
|
|
gstdash_debug.h
|
|
|
|
# compiler and linker flags used to compile this plugin, set in configure.ac
|
|
libgstdashdemux_la_CFLAGS = $(GST_PLUGINS_BAD_CFLAGS) \
|
|
$(GST_PLUGINS_BASE_CFLAGS) \
|
|
$(GST_BASE_CFLAGS) \
|
|
$(GST_CFLAGS) \
|
|
$(GIO_CFLAGS) \
|
|
$(LIBXML2_CFLAGS)
|
|
libgstdashdemux_la_LIBADD = \
|
|
$(top_builddir)/gst-libs/gst/uridownloader/libgsturidownloader-@GST_API_VERSION@.la \
|
|
$(top_builddir)/gst-libs/gst/adaptivedemux/libgstadaptivedemux-@GST_API_VERSION@.la \
|
|
$(top_builddir)/gst-libs/gst/isoff/libgstisoff-@GST_API_VERSION@.la \
|
|
$(GST_PLUGINS_BASE_LIBS) \
|
|
-lgsttag-$(GST_API_VERSION) \
|
|
$(GST_BASE_LIBS) \
|
|
$(GST_NET_LIBS) \
|
|
$(GST_LIBS) \
|
|
$(GIO_LIBS) \
|
|
$(LIBXML2_LIBS)
|
|
libgstdashdemux_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
|
|