mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-20 00:31:13 +00:00
179e234361
Adds the new 'circle' element to geometrictransform plugin
24 lines
1.1 KiB
Makefile
24 lines
1.1 KiB
Makefile
plugin_LTLIBRARIES = libgstgeometrictransform.la
|
|
|
|
libgstgeometrictransform_la_SOURCES = plugin.c \
|
|
gstgeometrictransform.c \
|
|
gstcirclegeometrictransform.c \
|
|
geometricmath.c \
|
|
gstcircle.c \
|
|
gstkaleidoscope.c \
|
|
gstpinch.c \
|
|
gsttwirl.c
|
|
|
|
libgstgeometrictransform_la_CFLAGS = $(GST_CFLAGS) $(GST_BASE_CFLAGS) \
|
|
$(GST_PLUGINS_BASE_CFLAGS)
|
|
libgstgeometrictransform_la_LIBADD = $(GST_PLUGINS_BASE_LIBS) -lgstvideo-@GST_MAJORMINOR@ $(GST_BASE_LIBS) $(GST_LIBS)
|
|
libgstgeometrictransform_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
|
libgstgeometrictransform_la_LIBTOOLFLAGS = --tag=disable-static
|
|
|
|
noinst_HEADERS = gstgeometrictransform.h \
|
|
gstcirclegeometrictransform.h \
|
|
geometricmath.h \
|
|
gstcircle.h \
|
|
gstkaleidoscope.h \
|
|
gstpinch.h \
|
|
gsttwirl.h
|