mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-03 16:09:39 +00:00
de1f057725
This supports - decoding single SVG images and a stream of SVG images with a given framerate - lossless scaling of SVG images - ARGB output
16 lines
438 B
Makefile
16 lines
438 B
Makefile
plugin_LTLIBRARIES = libgstrsvg.la
|
|
|
|
libgstrsvg_la_SOURCES = gstrsvg.c gstrsvgdec.c
|
|
libgstrsvg_la_CFLAGS = \
|
|
$(GST_PLUGINS_BASE_CFLAGS) \
|
|
$(GST_CFLAGS) \
|
|
$(RSVG_CFLAGS)
|
|
libgstrsvg_la_LIBADD = \
|
|
$(GST_PLUGINS_BASE_LIBS) -lgstvideo-$(GST_MAJORMINOR) \
|
|
$(GST_BASE_LIBS) \
|
|
$(GST_LIBS) \
|
|
$(RSVG_LIBS)
|
|
libgstrsvg_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS) $(LIBM)
|
|
libgstrsvg_la_LIBTOOLFLAGS = --tag=disable-static
|
|
|
|
noinst_HEADERS = gstrsvgdec.h
|