mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-03 16:09:39 +00:00
43147671c1
Flite is a speech synthesizer library (BSD-ish license). This element negotiates a (possibly) multichannel audio stream, and then continually outputs buffers naming the number and position of the channel. It's kinda crappy, but I needed it for testing purposes.
17 lines
424 B
Makefile
17 lines
424 B
Makefile
plugin_LTLIBRARIES = libgstflite.la
|
|
|
|
libgstflite_la_SOURCES = gstflite.c gstflitetestsrc.c
|
|
libgstflite_la_CFLAGS = \
|
|
$(GST_PLUGINS_BASE_CFLAGS) \
|
|
$(GST_CFLAGS) \
|
|
$(FLITE_CFLAGS)
|
|
libgstflite_la_LIBADD = \
|
|
$(GST_PLUGINS_BASE_LIBS) \
|
|
-lgstaudio-@GST_MAJORMINOR@ \
|
|
$(GST_BASE_LIBS) \
|
|
$(GST_LIBS) \
|
|
$(FLITE_LIBS)
|
|
libgstflite_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS) $(LIBM)
|
|
libgstflite_la_LIBTOOLFLAGS = --tag=disable-static
|
|
|
|
|