mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-28 04:31:06 +00:00
e88984ccbd
katedec: Kate decoder (text only) kateenc: Kate encoder (text and DVD SPU only) katetag: Kate tagger kateparse: Kate parser tiger: Kate renderer using the Tiger rendering library Fixes #525743.
20 lines
783 B
Makefile
20 lines
783 B
Makefile
# plugindir is set in configure
|
|
|
|
plugin_LTLIBRARIES = libgstkate.la
|
|
|
|
# sources used to compile this plug-in
|
|
libgstkate_la_SOURCES = gstkate.c gstkatedec.c gstkateenc.c gstkateparse.c gstkatetag.c gstkateutil.c
|
|
if USE_TIGER
|
|
libgstkate_la_SOURCES += gstkatetiger.c
|
|
endif
|
|
|
|
# flags used to compile this plugin
|
|
libgstkate_la_CFLAGS = $(GST_CFLAGS) $(GST_PLUGINS_BASE_CFLAGS) $(TIGER_CFLAGS) $(KATE_CFLAGS)
|
|
libgstkate_la_LIBADD = $(GST_PLUGIN_BASE_LIBS) -lgsttag-$(GST_MAJORMINOR) $(GST_LIBS) $(TIGER_LIBS) $(KATE_LIBS)
|
|
libgstkate_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
|
libgstkate_la_LIBTOOLFLAGS = --tag=disable-static
|
|
|
|
# headers we need but don't want installed
|
|
noinst_HEADERS = gstkate.h gstkatedec.h gstkateenc.h gstkateparse.h gstkatetag.h gstkateutil.h gstkatetiger.h
|
|
|
|
EXTRA_DIST=README
|