mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-03 16:09:39 +00:00
15 lines
495 B
Makefile
15 lines
495 B
Makefile
plugin_LTLIBRARIES = libgstlv2.la
|
|
|
|
libgstlv2_la_SOURCES = gstlv2.c
|
|
libgstlv2_la_CFLAGS = \
|
|
-I$(top_srcdir)/gst-libs \
|
|
$(GST_PLUGINS_BASE_CFLAGS) \
|
|
$(GST_CFLAGS) $(SLV2_CFLAGS)
|
|
libgstlv2_la_LIBADD = \
|
|
$(top_builddir)/gst-libs/gst/signalprocessor/libgstsignalprocessor-@GST_API_VERSION@.la \
|
|
$(GST_PLUGINS_BASE_LIBS) -lgstaudio-$(GST_API_VERSION) \
|
|
$(LIBM) $(SLV2_LIBS)
|
|
libgstlv2_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
|
libgstlv2_la_LIBTOOLFLAGS = --tag=disable-static
|
|
|
|
noinst_HEADERS = gstlv2.h
|