2013-05-08 14:13:32 +00:00
|
|
|
|
|
|
|
plugin_LTLIBRARIES = libgstdashdemux.la
|
|
|
|
|
|
|
|
libgstdashdemux_la_SOURCES = \
|
|
|
|
gstmpdparser.c \
|
|
|
|
gstdashdemux.c \
|
2015-01-12 14:57:02 +00:00
|
|
|
gstisoff.c \
|
2014-05-01 15:04:51 +00:00
|
|
|
gstplugin.c
|
2013-05-08 14:13:32 +00:00
|
|
|
|
|
|
|
# headers we need but don't want installed
|
2013-02-05 03:45:06 +00:00
|
|
|
noinst_HEADERS = \
|
|
|
|
gstmpdparser.h \
|
2013-02-05 20:38:06 +00:00
|
|
|
gstdashdemux.h \
|
2015-01-12 14:57:02 +00:00
|
|
|
gstisoff.h \
|
2013-06-25 21:34:13 +00:00
|
|
|
gstdash_debug.h
|
2013-05-08 14:13:32 +00:00
|
|
|
|
|
|
|
# compiler and linker flags used to compile this plugin, set in configure.ac
|
2014-08-26 19:45:46 +00:00
|
|
|
libgstdashdemux_la_CFLAGS = $(GST_PLUGINS_BAD_CFLAGS) \
|
2014-06-25 13:55:32 +00:00
|
|
|
$(GST_PLUGINS_BASE_CFLAGS) \
|
|
|
|
$(GST_BASE_CFLAGS) \
|
|
|
|
$(GST_CFLAGS) \
|
|
|
|
$(LIBXML2_CFLAGS)
|
2013-02-05 03:45:06 +00:00
|
|
|
libgstdashdemux_la_LIBADD = \
|
2013-04-18 10:41:09 +00:00
|
|
|
$(top_builddir)/gst-libs/gst/uridownloader/libgsturidownloader-@GST_API_VERSION@.la \
|
2014-08-26 19:45:46 +00:00
|
|
|
$(top_builddir)/gst-libs/gst/adaptivedemux/libgstadaptivedemux-@GST_API_VERSION@.la \
|
2015-06-09 10:11:54 +00:00
|
|
|
$(GST_PLUGINS_BASE_LIBS) \
|
2014-06-25 13:55:32 +00:00
|
|
|
-lgsttag-$(GST_API_VERSION) \
|
|
|
|
$(GST_BASE_LIBS) \
|
|
|
|
$(GST_LIBS) \
|
|
|
|
$(LIBXML2_LIBS)
|
2013-05-08 14:13:32 +00:00
|
|
|
libgstdashdemux_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
|
|
|
libgstdashdemux_la_LIBTOOLFLAGS = --tag=disable-static
|
|
|
|
|