blob: 2d152335df4800a70b921f8465c1e4e69b2a35e9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
plugin_LTLIBRARIES = libgstogg.la
libgstogg_la_SOURCES = \
gstogg.c \
gstoggdemux.c \
gstoggmux.c \
gstogmparse.c \
gstoggaviparse.c \
gstoggparse.c \
gstoggstream.c \
gstoggstream.h \
dirac_parse.c \
dirac_parse.h \
vorbis_parse.c
noinst_HEADERS = \
gstoggdemux.h gstoggmux.h
libgstogg_la_CFLAGS = $(GST_PLUGINS_BASE_CFLAGS) $(GST_CFLAGS) $(OGG_CFLAGS)
libgstogg_la_LIBADD = \
$(top_builddir)/gst-libs/gst/riff/libgstriff-$(GST_MAJORMINOR).la \
$(top_builddir)/gst-libs/gst/tag/libgsttag-$(GST_MAJORMINOR).la \
$(GST_BASE_LIBS) \
$(OGG_LIBS)
libgstogg_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
libgstogg_la_LIBTOOLFLAGS = --tag=disable-static
|