mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-08 18:39:54 +00:00
242ef1b05b
Original commit message from CVS: * configure.ac: * gst/sine/Makefile.am: * gst/volume/Makefile.am: controllerized elements also need to link against controller-libs ;)
19 lines
524 B
Makefile
19 lines
524 B
Makefile
plugin_LTLIBRARIES = libgstvolume.la
|
|
|
|
libgstvolume_la_SOURCES = gstvolume.c
|
|
libgstvolume_la_CFLAGS = $(GST_CFLAGS)
|
|
libgstvolume_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
|
libgstvolume_la_LIBADD = \
|
|
$(top_builddir)/gst-libs/gst/interfaces/libgstinterfaces-$(GST_MAJORMINOR).la \
|
|
$(GST_BASE_LIBS) \
|
|
$(GST_LIBS) \
|
|
$(GST_CTRL_LIBS)
|
|
|
|
noinst_HEADERS = gstvolume.h
|
|
|
|
if HAVE_GTK
|
|
noinst_PROGRAMS = demo
|
|
demo_SOURCES = demo.c
|
|
demo_CFLAGS = $(GTK_CFLAGS) $(GST_CFLAGS) -D_GNU_SOURCE
|
|
demo_LDFLAGS = $(GTK_LIBS) $(GST_LIBS) -lm
|
|
endif
|