1
2plugin_LTLIBRARIES = libgstdashdemux.la
3
4libgstdashdemux_la_SOURCES =			\
5	gstmpdparser.c				\
6	gstdashdemux.c				\
7	gstplugin.c
8
9# headers we need but don't want installed
10noinst_HEADERS =        \
11        gstmpdparser.h	\
12	gstdashdemux.h	\
13	gstdash_debug.h
14
15# compiler and linker flags used to compile this plugin, set in configure.ac
16libgstdashdemux_la_CFLAGS = $(GST_PLUGINS_BAD_CFLAGS) \
17	$(GST_PLUGINS_BASE_CFLAGS) \
18	$(GST_BASE_CFLAGS) \
19	$(GST_CFLAGS) \
20	$(GIO_CFLAGS) \
21	$(LIBXML2_CFLAGS)
22libgstdashdemux_la_LIBADD = \
23	$(top_builddir)/gst-libs/gst/uridownloader/libgsturidownloader-@GST_API_VERSION@.la \
24	$(top_builddir)/gst-libs/gst/adaptivedemux/libgstadaptivedemux-@GST_API_VERSION@.la \
25	$(top_builddir)/gst-libs/gst/isoff/libgstisoff-@GST_API_VERSION@.la \
26	$(GST_PLUGINS_BASE_LIBS) \
27	-lgsttag-$(GST_API_VERSION) \
28	$(GST_BASE_LIBS) \
29	$(GST_NET_LIBS) \
30	$(GST_LIBS) \
31	$(GIO_LIBS) \
32	$(LIBXML2_LIBS)
33libgstdashdemux_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
34
35