mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-08 18:39:54 +00:00
37 lines
782 B
Makefile
37 lines
782 B
Makefile
plugin_LTLIBRARIES = libgstttmlsubs.la
|
|
|
|
# sources used to compile this plug-in
|
|
libgstttmlsubs_la_SOURCES = \
|
|
subtitle.c \
|
|
subtitlemeta.c \
|
|
gstttmlparse.c \
|
|
gstttmlparse.h \
|
|
ttmlparse.c \
|
|
ttmlparse.h \
|
|
gstttmlrender.c \
|
|
gstttmlplugin.c
|
|
|
|
# compiler and linker flags used to compile this plugin, set in configure.ac
|
|
libgstttmlsubs_la_CFLAGS = \
|
|
$(GST_PLUGINS_BASE_CFLAGS) \
|
|
$(GST_BASE_CFLAGS) \
|
|
$(GST_CFLAGS) \
|
|
$(TTML_CFLAGS)
|
|
|
|
libgstttmlsubs_la_LIBADD = \
|
|
$(GST_PLUGINS_BASE_LIBS) \
|
|
-lgstvideo-$(GST_API_VERSION) \
|
|
$(GST_BASE_LIBS) \
|
|
$(GST_LIBS) \
|
|
$(TTML_LIBS) \
|
|
$(LIBM)
|
|
|
|
libgstttmlsubs_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
|
|
|
# headers we need but don't want installed
|
|
noinst_HEADERS = \
|
|
subtitle.h \
|
|
subtitlemeta.h \
|
|
gstttmlparse.h \
|
|
ttmlparse.h \
|
|
gstttmlrender.h
|