mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-03 16:09:39 +00:00
0def19d473
The GstNavigation interface is now in libgstvideo.
63 lines
2.6 KiB
Makefile
63 lines
2.6 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 \
|
|
gstrotate.c \
|
|
gstsphere.c \
|
|
gsttwirl.c \
|
|
gstwaterripple.c \
|
|
gststretch.c \
|
|
gstbulge.c \
|
|
gsttunnel.c \
|
|
gstsquare.c \
|
|
gstmirror.c \
|
|
gstfisheye.c
|
|
|
|
libgstgeometrictransform_la_CFLAGS = $(GST_CFLAGS) $(GST_BASE_CFLAGS) \
|
|
$(GST_PLUGINS_BASE_CFLAGS)
|
|
libgstgeometrictransform_la_LIBADD = $(GST_PLUGINS_BASE_LIBS) \
|
|
-lgstvideo-@GST_API_VERSION@ \
|
|
$(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 \
|
|
gstrotate.h \
|
|
gstsphere.h \
|
|
gsttwirl.h \
|
|
gstwaterripple.h \
|
|
gststretch.h \
|
|
gstbulge.h \
|
|
gsttunnel.h \
|
|
gstsquare.h \
|
|
gstmirror.h \
|
|
gstfisheye.h
|
|
|
|
Android.mk: Makefile.am $(BUILT_SOURCES)
|
|
androgenizer \
|
|
-:PROJECT libgstgeometrictransform -:SHARED libgstgeometrictransform \
|
|
-:TAGS eng debug \
|
|
-:REL_TOP $(top_srcdir) -:ABS_TOP $(abs_top_srcdir) \
|
|
-:SOURCES $(libgstgeometrictransform_la_SOURCES) \
|
|
-:CFLAGS $(DEFS) $(DEFAULT_INCLUDES) $(libgstgeometrictransform_la_CFLAGS) \
|
|
-:LDFLAGS $(libgstgeometrictransform_la_LDFLAGS) \
|
|
$(libgstgeometrictransform_la_LIBADD) \
|
|
-ldl \
|
|
-:PASSTHROUGH LOCAL_ARM_MODE:=arm \
|
|
LOCAL_MODULE_PATH:='$$(TARGET_OUT)/lib/gstreamer-0.10' \
|
|
> $@
|