gstreamer/gst/coloreffects/Makefile.am
Filippo Argiolas 79c343bade coloreffects: new plugin for lookup table color mapping
Implements a color lookup table filter with 4 presets:
 - heat: fake heat camera effect
 - sepia: sepia toning
 - xray: invert + shade to blue
 - xpro: cross process

https://bugzilla.gnome.org/show_bug.cgi?id=625817
2010-08-04 10:04:20 +02:00

16 lines
460 B
Makefile

plugin_LTLIBRARIES = libgstcoloreffects.la
libgstcoloreffects_la_SOURCES = \
gstplugin.c \
gstcoloreffects.c
libgstcoloreffects_la_CFLAGS = \
$(GST_PLUGINS_BASE_CFLAGS) \
$(GST_CFLAGS)
libgstcoloreffects_la_LIBADD = \
$(GST_PLUGINS_BASE_LIBS) -lgstvideo-@GST_MAJORMINOR@ \
$(GST_BASE_LIBS) \
$(GST_LIBS)
libgstcoloreffects_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
libgstcoloreffects_la_LIBTOOLFLAGS = --tag=disable-static
noinst_HEADERS = gstcoloreffects.h