2008-11-08 02:00:58 +00:00
|
|
|
# plugindir is set in configure
|
|
|
|
|
|
|
|
plugin_LTLIBRARIES = libgstqtmux.la
|
|
|
|
|
|
|
|
# sources used to compile this plug-in
|
|
|
|
libgstqtmux_la_SOURCES = gstqtmux.c \
|
2009-12-12 19:07:15 +00:00
|
|
|
gstqtmoovrecover.c \
|
|
|
|
gstqtmuxplugin.c \
|
2008-11-08 02:00:58 +00:00
|
|
|
atoms.c \
|
2009-12-12 19:07:15 +00:00
|
|
|
atomsrecovery.c \
|
2008-11-08 02:00:58 +00:00
|
|
|
descriptors.c \
|
|
|
|
properties.c \
|
|
|
|
gstqtmuxmap.c
|
|
|
|
|
|
|
|
# flags used to compile this plugin
|
|
|
|
# add other _CFLAGS and _LIBS as needed
|
|
|
|
libgstqtmux_la_CFLAGS = $(GST_CFLAGS) $(GST_BASE_CFLAGS)
|
|
|
|
libgstqtmux_la_LIBADD = $(GST_LIBS) $(GST_BASE_LIBS)
|
|
|
|
libgstqtmux_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
2009-03-09 21:43:55 +00:00
|
|
|
libgstqtmux_la_LIBTOOLFLAGS = --tag=disable-static
|
2008-11-08 02:00:58 +00:00
|
|
|
|
|
|
|
# headers we need but don't want installed
|
|
|
|
noinst_HEADERS = gstqtmux.h \
|
2009-12-12 19:07:15 +00:00
|
|
|
gstqtmoovrecover.h \
|
2008-11-08 02:00:58 +00:00
|
|
|
atoms.h \
|
2009-12-12 19:07:15 +00:00
|
|
|
atomsrecovery.h \
|
2008-11-08 02:00:58 +00:00
|
|
|
descriptors.h \
|
|
|
|
properties.h \
|
|
|
|
fourcc.h \
|
|
|
|
ftypcc.h \
|
|
|
|
gstqtmuxmap.h
|
2009-12-12 19:07:15 +00:00
|
|
|
|