mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-24 10:41:04 +00:00
8f478f5e2c
Original commit message from CVS: * gst/wavparse/Makefile.am: Add CFLAGS and LIBS for libgstbase, fixes build on Cygwin (#341489).
15 lines
395 B
Makefile
15 lines
395 B
Makefile
plugin_LTLIBRARIES = libgstwavparse.la
|
|
|
|
libgstwavparse_la_SOURCES = gstwavparse.c
|
|
libgstwavparse_la_CFLAGS = \
|
|
$(GST_BASE_CFLAGS) \
|
|
$(GST_PLUGINS_BASE_CFLAGS) \
|
|
$(GST_CFLAGS) \
|
|
-I$(top_srcdir)/gst-libs
|
|
libgstwavparse_la_LIBADD = \
|
|
-lgstriff-@GST_MAJORMINOR@ \
|
|
$(GST_PLUGINS_BASE_LIBS) \
|
|
$(GST_BASE_CFLAGS)
|
|
libgstwavparse_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
|
|
|
noinst_HEADERS = gstwavparse.h
|