mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-03 16:09:39 +00:00
b87f7345db
One way of passing -lws2_32 to plugins should be enough..
25 lines
774 B
Makefile
25 lines
774 B
Makefile
# plugindir is set in configure
|
|
|
|
plugin_LTLIBRARIES = libgstdccp.la
|
|
|
|
# sources used to compile this plug-in
|
|
libgstdccp_la_SOURCES = gstdccpplugin.c \
|
|
gstdccp.c \
|
|
gstdccpserversink.c \
|
|
gstdccpserversrc.c \
|
|
gstdccpclientsink.c \
|
|
gstdccpclientsrc.c
|
|
|
|
# flags used to compile this plugin
|
|
libgstdccp_la_CFLAGS = $(GST_CFLAGS)
|
|
libgstdccp_la_LIBADD = $(GST_BASE_LIBS) $(GST_LIBS) $(DCCP_LIBS) $(WINSOCK2_LIBS)
|
|
libgstdccp_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
|
libgstdccp_la_LIBTOOLFLAGS = --tag=disable-static
|
|
|
|
# headers we need but don't want installed
|
|
noinst_HEADERS = gstdccp.h \
|
|
gstdccpserversink.h \
|
|
gstdccpserversrc.h \
|
|
gstdccpclientsink.h \
|
|
gstdccpclientsrc.h \
|
|
gstdccp_common.h
|