mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-10 19:31:12 +00:00
c4335cf663
They're probably not going to be UTF-8, but ISO-8859-1 or somesuch if they're not plain ASCII.
23 lines
499 B
Makefile
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
|