mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-03 16:09:39 +00:00
5d78ae0a1c
Original commit message from CVS: * gst/matroska/Makefile.am: If zlib is available and used, we must link it explicitly for things to work on MingW (fixes #392855).
30 lines
599 B
Makefile
30 lines
599 B
Makefile
plugin_LTLIBRARIES = libgstmatroska.la
|
|
|
|
libgstmatroska_la_SOURCES = \
|
|
ebml-read.c \
|
|
ebml-write.c \
|
|
matroska.c \
|
|
matroska-demux.c \
|
|
matroska-ids.c \
|
|
matroska-mux.c
|
|
|
|
noinst_HEADERS = \
|
|
ebml-ids.h \
|
|
ebml-read.h \
|
|
ebml-write.h \
|
|
matroska-demux.h \
|
|
matroska-ids.h \
|
|
matroska-mux.h
|
|
|
|
libgstmatroska_la_CFLAGS = \
|
|
$(GST_BASE_CFLAGS) \
|
|
$(GST_PLUGINS_BASE_CFLAGS) \
|
|
$(GST_CFLAGS) \
|
|
-I$(top_srcdir)/gst-libs
|
|
libgstmatroska_la_LIBADD = \
|
|
$(GST_BASE_LIBS) \
|
|
$(GST_PLUGINS_BASE_LIBS) \
|
|
$(GST_LIBS) \
|
|
-lgstriff-@GST_MAJORMINOR@ \
|
|
$(ZLIB_LIBS)
|
|
libgstmatroska_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|