mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-03 16:09:39 +00:00
16b79f6f2d
Sink acts as a client and can connect to servers to upload media. https://bugzilla.gnome.org/show_bug.cgi?id=641496
15 lines
366 B
Makefile
15 lines
366 B
Makefile
plugin_LTLIBRARIES = libgstcurl.la
|
|
|
|
libgstcurl_la_SOURCES = gstcurl.c gstcurlsink.c
|
|
libgstcurl_la_CFLAGS = \
|
|
$(GST_BASE_CFLAGS) \
|
|
$(GST_CFLAGS) \
|
|
$(CURL_CFLAGS)
|
|
libgstcurl_la_LIBADD = \
|
|
$(GST_BASE_LIBS) \
|
|
$(GST_LIBS) \
|
|
$(CURL_LIBS)
|
|
libgstcurl_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
|
libgstcurl_la_LIBTOOLFLAGS = --tag=disable-static
|
|
|
|
noinst_HEADERS = gstcurlsink.h
|