mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-03 16:09:39 +00:00
43 lines
1.5 KiB
Makefile
43 lines
1.5 KiB
Makefile
plugin_LTLIBRARIES = libgstcamerabin2.la
|
|
|
|
libgstcamerabin2_la_SOURCES = gstviewfinderbin.c \
|
|
camerabingeneral.c \
|
|
gstwrappercamerabinsrc.c \
|
|
gstcamerabin2.c \
|
|
gstplugin.c
|
|
|
|
libgstcamerabin2_la_CFLAGS = \
|
|
$(GST_PLUGINS_BAD_CFLAGS) \
|
|
$(GST_PLUGINS_BASE_CFLAGS) \
|
|
$(GST_BASE_CFLAGS) $(GST_CFLAGS) \
|
|
-DGST_USE_UNSTABLE_API
|
|
|
|
libgstcamerabin2_la_LIBADD = \
|
|
$(top_builddir)/gst-libs/gst/interfaces/libgstphotography-$(GST_API_VERSION).la \
|
|
$(top_builddir)/gst-libs/gst/basecamerabinsrc/libgstbasecamerabinsrc-$(GST_API_VERSION).la \
|
|
$(GST_PLUGINS_BASE_LIBS) -lgsttag-$(GST_API_VERSION) -lgstapp-$(GST_API_VERSION) -lgstpbutils-$(GST_API_VERSION) \
|
|
$(GST_BASE_LIBS) $(GST_LIBS)
|
|
|
|
libgstcamerabin2_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
|
libgstcamerabin2_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS)
|
|
|
|
noinst_HEADERS = gstviewfinderbin.h \
|
|
camerabingeneral.h \
|
|
gstwrappercamerabinsrc.h \
|
|
gstcamerabin2.h
|
|
|
|
Android.mk: Makefile.am $(BUILT_SOURCES)
|
|
androgenizer \
|
|
-:PROJECT libgstcamerabin2 -:SHARED libgstcamerabin2 \
|
|
-:TAGS eng debug \
|
|
-:REL_TOP $(top_srcdir) -:ABS_TOP $(abs_top_srcdir) \
|
|
-:SOURCES $(libgstcamerabin2_la_SOURCES) \
|
|
-:CFLAGS $(DEFS) $(DEFAULT_INCLUDES) $(libgstcamerabin2_la_CFLAGS) \
|
|
-:LDFLAGS $(libgstcamerabin2_la_LDFLAGS) \
|
|
$(libgstcamerabin2_la_LIBADD) \
|
|
-ldl \
|
|
-:LIBFILTER_STATIC gstphotography-@GST_API_VERSION@ \
|
|
gstbasecamerabinsrc-@GST_API_VERSION@ \
|
|
-:PASSTHROUGH LOCAL_ARM_MODE:=arm \
|
|
LOCAL_MODULE_PATH:='$$(TARGET_OUT)/lib/gstreamer-0.10' \
|
|
> $@
|