mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-09 19:09:41 +00:00
33a012219d
Calls to gst_base_transform_get_type and gst_base_transform_set_passthrough require linking with libgstbase. https://bugzilla.gnome.org/show_bug.cgi?id=684740
15 lines
541 B
Makefile
15 lines
541 B
Makefile
plugin_LTLIBRARIES = libgstchromaprint.la
|
|
|
|
libgstchromaprint_la_SOURCES = gstchromaprint.c gstchromaprint.h
|
|
|
|
libgstchromaprint_la_CFLAGS = $(GST_PLUGINS_BAD_CFLAGS) \
|
|
$(GST_PLUGINS_BASE_CFLAGS) $(GST_BASE_CFLAGS) $(GST_CFLAGS) \
|
|
$(CHROMAPRINT_CFLAGS)
|
|
libgstchromaprint_la_LIBADD = \
|
|
$(GST_PLUGINS_BASE_LIBS) -lgstaudio-$(GST_API_VERSION) \
|
|
$(GST_BASE_LIBS) $(GST_LIBS) \
|
|
$(CHROMAPRINT_LIBS)
|
|
libgstchromaprint_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
|
libgstchromaprint_la_LIBTOOLFLAGS = --tag=disable-static
|
|
|
|
noinst_HEADERS = gstchromaprint.h
|