blob: ce7a197ff31f3966c8f5c355b9556e9751878af1 (
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
28
29
30
31
32
33
34
35
36
|
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_BASE_LIBS) \
$(GST_LIBS) \
-lgstvideo-$(GST_API_VERSION) \
$(TTML_LIBS)
libgstttmlsubs_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
libgstttmlsubs_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS)
# headers we need but don't want installed
noinst_HEADERS = \
subtitle.h \
subtitlemeta.h \
gstttmlparse.h \
ttmlparse.h \
gstttmlrender.h
|