mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-05 00:50:21 +00:00
4938c2e9ea
Move the base camera src class to gst-libs/gst/basecamerabinsrc to allow it to be included from the tests.
30 lines
975 B
Makefile
30 lines
975 B
Makefile
plugin_LTLIBRARIES = libgstcamerabin2.la
|
|
|
|
libgstcamerabin2_la_SOURCES = gstviewfinderbin.c \
|
|
gstimagecapturebin.c \
|
|
gstvideorecordingbin.c \
|
|
camerabingeneral.c \
|
|
gstv4l2camerasrc.c \
|
|
gstcamerabin2.c \
|
|
gstplugin.c
|
|
|
|
libgstcamerabin2_la_CFLAGS = \
|
|
$(GST_PLUGINS_BAD_CFLAGS) \
|
|
$(GST_CFLAGS) $(GST_BASE_CFLAGS) $(GST_PLUGINS_BASE_CFLAGS) \
|
|
-DGST_USE_UNSTABLE_API
|
|
|
|
libgstcamerabin2_la_LIBADD = \
|
|
$(top_builddir)/gst-libs/gst/interfaces/libgstphotography-$(GST_MAJORMINOR).la \
|
|
$(top_builddir)/gst-libs/gst/basecamerabinsrc/libgstbasecamerabinsrc-$(GST_MAJORMINOR).la \
|
|
$(GST_LIBS) $(GST_BASE_LIBS) $(GST_PLUGINS_BASE_LIBS) \
|
|
-lgstinterfaces-$(GST_MAJORMINOR) -lgsttag-$(GST_MAJORMINOR)
|
|
|
|
libgstcamerabin2_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
|
libgstcamerabin2_la_LIBTOOLFLAGS = --tag=disable-static
|
|
|
|
noinst_HEADERS = gstviewfinderbin.h \
|
|
gstimagecapturebin.h \
|
|
gstvideorecordingbin.h \
|
|
camerabingeneral.h \
|
|
gstv4l2camerasrc.h \
|
|
gstcamerabin2.h
|