mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-05 09:00:54 +00:00
26 lines
662 B
Makefile
26 lines
662 B
Makefile
# plugindir is set in configure
|
|
|
|
plugin_LTLIBRARIES = libgstqtmux.la
|
|
|
|
# sources used to compile this plug-in
|
|
libgstqtmux_la_SOURCES = gstqtmux.c \
|
|
atoms.c \
|
|
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)
|
|
libgstqtmux_la_LIBTOOLFLAGS = --tag=disable-static
|
|
|
|
# headers we need but don't want installed
|
|
noinst_HEADERS = gstqtmux.h \
|
|
atoms.h \
|
|
descriptors.h \
|
|
properties.h \
|
|
fourcc.h \
|
|
ftypcc.h \
|
|
gstqtmuxmap.h
|