mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-27 12:11:13 +00:00
eb2dae8fd6
- libgstgtksink.so -> libgstgtk.so - libgstteletextdec.so -> libgstteletex.so - libgstcamerabin2.so -> libgstcamerabin.so - libgstonvif.so -> libgstrtponvif.so (meson only) - sdp -> sdpelem (avoid clash with libgstsdp) - gstsiren -> siren - libgstkmssink.so -> libgstkms.so https://bugzilla.gnome.org/show_bug.cgi?id=779344
29 lines
955 B
Makefile
29 lines
955 B
Makefile
plugin_LTLIBRARIES = libgstcamerabin.la
|
|
|
|
libgstcamerabin_la_SOURCES = gstviewfinderbin.c \
|
|
gstdigitalzoom.c \
|
|
camerabingeneral.c \
|
|
gstwrappercamerabinsrc.c \
|
|
gstcamerabin2.c \
|
|
gstplugin.c
|
|
|
|
libgstcamerabin_la_CFLAGS = \
|
|
$(GST_PLUGINS_BAD_CFLAGS) \
|
|
$(GST_PLUGINS_BASE_CFLAGS) \
|
|
$(GST_BASE_CFLAGS) $(GST_CFLAGS) \
|
|
-DGST_USE_UNSTABLE_API
|
|
|
|
libgstcamerabin_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)
|
|
|
|
libgstcamerabin_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
|
libgstcamerabin_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS)
|
|
|
|
noinst_HEADERS = gstviewfinderbin.h \
|
|
camerabingeneral.h \
|
|
gstdigitalzoom.h \
|
|
gstwrappercamerabinsrc.h \
|
|
gstcamerabin2.h
|