mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-03 16:09:39 +00:00
8e6c6266d7
Static and dynamic plugins now have the same interface. The standard --enable-static/--enable-shared toggle are sufficient.
22 lines
570 B
Makefile
22 lines
570 B
Makefile
plugin_LTLIBRARIES = libgstencoding.la
|
|
|
|
libgstencoding_la_SOURCES = \
|
|
gstencodebin.c \
|
|
gstsmartencoder.c \
|
|
gststreamcombiner.c \
|
|
gststreamsplitter.c
|
|
|
|
libgstencoding_la_CFLAGS = $(GST_PLUGINS_BASE_CFLAGS) $(GST_CFLAGS)
|
|
libgstencoding_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
|
libgstencoding_la_LIBADD = \
|
|
$(top_builddir)/gst-libs/gst/pbutils/libgstpbutils-@GST_API_VERSION@.la \
|
|
$(GST_LIBS)
|
|
|
|
noinst_HEADERS = \
|
|
gstencodebin.h \
|
|
gststreamcombiner.h \
|
|
gststreamsplitter.h \
|
|
gstsmartencoder.h \
|
|
gststreamcombinerpad.h
|
|
|
|
include $(top_srcdir)/common/gst-glib-gen.mak
|