mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-23 16:50:47 +00:00
86c5975ebe
Move the two function from search.c into gstladspa.c and make them static. Remove non needed arguments from function prototypes. Use glib api for simplicity and portability.
9 lines
441 B
Makefile
9 lines
441 B
Makefile
plugin_LTLIBRARIES = libgstladspa.la
|
|
|
|
libgstladspa_la_SOURCES = gstsignalprocessor.c gstladspa.c
|
|
libgstladspa_la_CFLAGS = $(GST_PLUGINS_BASE_CFLAGS) $(GST_CONTROLLER_CFLAGS) $(GST_CFLAGS)
|
|
libgstladspa_la_LIBADD = $(GST_PLUGINS_BASE_LIBS) -lgstaudio-$(GST_MAJORMINOR) $(LIBM) $(LADSPA_LIBS)
|
|
libgstladspa_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
|
libgstladspa_la_LIBTOOLFLAGS = --tag=disable-static
|
|
|
|
noinst_HEADERS = gstsignalprocessor.h gstladspa.h
|