1plugin_LTLIBRARIES = libgstcamerabin.la 2 3libgstcamerabin_la_SOURCES = gstviewfinderbin.c \ 4 gstdigitalzoom.c \ 5 camerabingeneral.c \ 6 gstwrappercamerabinsrc.c \ 7 gstcamerabin2.c \ 8 gstplugin.c 9 10libgstcamerabin_la_CFLAGS = \ 11 $(GST_PLUGINS_BAD_CFLAGS) \ 12 $(GST_PLUGINS_BASE_CFLAGS) \ 13 $(GST_BASE_CFLAGS) $(GST_CFLAGS) \ 14 -DGST_USE_UNSTABLE_API 15 16libgstcamerabin_la_LIBADD = \ 17 $(top_builddir)/gst-libs/gst/interfaces/libgstphotography-$(GST_API_VERSION).la \ 18 $(top_builddir)/gst-libs/gst/basecamerabinsrc/libgstbasecamerabinsrc-$(GST_API_VERSION).la \ 19 $(GST_PLUGINS_BASE_LIBS) -lgsttag-$(GST_API_VERSION) -lgstapp-$(GST_API_VERSION) -lgstpbutils-$(GST_API_VERSION) \ 20 $(GST_BASE_LIBS) $(GST_LIBS) 21 22libgstcamerabin_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS) 23 24noinst_HEADERS = gstviewfinderbin.h \ 25 camerabingeneral.h \ 26 gstdigitalzoom.h \ 27 gstwrappercamerabinsrc.h \ 28 gstcamerabin2.h 29