gstreamer/gst/geometrictransform/Makefile.am
Filippo Argiolas 3ba3310b01 geometrictransform: new filter "bulge"
Ports gleffects "bulge" filter to geometrictransform.
Adds a protuberance around the center point.

https://bugzilla.gnome.org/show_bug.cgi?id=625722
2010-08-02 20:11:28 +02:00

43 lines
1.8 KiB
Makefile

plugin_LTLIBRARIES = libgstgeometrictransform.la
libgstgeometrictransform_la_SOURCES = plugin.c \
gstgeometrictransform.c \
gstcirclegeometrictransform.c \
geometricmath.c \
gstcircle.c \
gstdiffuse.c \
gstkaleidoscope.c \
gstmarble.c \
gstpinch.c \
gstsphere.c \
gsttwirl.c \
gstwaterripple.c \
gststretch.c \
gstbulge.c
libgstgeometrictransform_la_CFLAGS = $(GST_CFLAGS) $(GST_BASE_CFLAGS) \
$(GST_PLUGINS_BASE_CFLAGS) \
$(GST_CONTROLLER_CFLAGS)
libgstgeometrictransform_la_LIBADD = $(GST_PLUGINS_BASE_LIBS) \
-lgstvideo-@GST_MAJORMINOR@ \
-lgstinterfaces-@GST_MAJORMINOR@ \
$(GST_CONTROLLER_LIBS) \
$(GST_BASE_LIBS) \
$(GST_LIBS) $(LIBM)
libgstgeometrictransform_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
libgstgeometrictransform_la_LIBTOOLFLAGS = --tag=disable-static
noinst_HEADERS = gstgeometrictransform.h \
gstcirclegeometrictransform.h \
geometricmath.h \
gstcircle.h \
gstdiffuse.h \
gstkaleidoscope.h \
gstmarble.h \
gstpinch.h \
gstsphere.h \
gsttwirl.h \
gstwaterripple.h \
gststretch.h \
gstbulge.h