mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-19 06:46:38 +00:00
0f1c5c1b68
Previous history is in Schroedinger. Depends on, and is an example of using, GstBaseVideo* base classes. Code was reindented, and an #ifdef HAVE_ENCODER removed.
24 lines
503 B
Makefile
24 lines
503 B
Makefile
|
|
plugin_LTLIBRARIES = libgstschro.la
|
|
|
|
noinst_HEADERS = \
|
|
gstschroutils.h
|
|
|
|
libgstschro_la_SOURCES = \
|
|
gstschro.c \
|
|
gstschrodec.c \
|
|
gstschroenc.c \
|
|
gstschroparse.c \
|
|
gstschroutils.c
|
|
libgstschro_la_CFLAGS = \
|
|
$(GST_PLUGINS_BASE_CFLAGS) \
|
|
$(GST_CFLAGS) \
|
|
$(SCHRO_CFLAGS)
|
|
libgstschro_la_LIBADD = \
|
|
$(top_builddir)/gst-libs/gst/video/libgstvideo-$(GST_MAJORMINOR).la \
|
|
$(GST_LIBS) \
|
|
$(SCHRO_LIBS)
|
|
libgstschro_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
|
libgstschro_la_LIBTOOLFLAGS = --tag=disable-static
|
|
|
|
|