gstreamer/ext/cdio/Makefile.am
Tim-Philipp Müller c4335cf663 cdio: use gst_tag_freeform_string_to_utf8() for CD-TEXT strings
They're probably not going to be UTF-8, but ISO-8859-1 or somesuch
if they're not plain ASCII.
2012-11-11 20:42:42 +00:00

23 lines
499 B
Makefile

plugin_LTLIBRARIES = libgstcdio.la
libgstcdio_la_SOURCES = \
gstcdio.c \
gstcdiocddasrc.c
libgstcdio_la_CFLAGS = \
$(GST_PLUGINS_BASE_CFLAGS) \
$(GST_BASE_CFLAGS) \
$(GST_CFLAGS) \
$(CDIO_CFLAGS)
libgstcdio_la_LIBADD = \
$(GST_PLUGINS_BASE_LIBS) -lgstaudio-$(GST_API_VERSION) -lgsttag-$(GST_API_VERSION) \
$(GST_BASE_LIBS) \
$(CDIO_LIBS)
libgstcdio_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
libgstcdio_la_LIBTOOLFLAGS = --tag=disable-static
noinst_HEADERS = \
gstcdio.h \
gstcdiocddasrc.h