2017-01-31 09:56:59 +00:00
|
|
|
plugin_LTLIBRARIES = libgstwebrtc.la
|
|
|
|
|
|
|
|
noinst_HEADERS = \
|
|
|
|
fwd.h \
|
|
|
|
gstwebrtcbin.h \
|
|
|
|
gstwebrtcice.h \
|
|
|
|
gstwebrtcstats.h \
|
|
|
|
icestream.h \
|
|
|
|
nicetransport.h \
|
2018-09-10 13:52:05 +00:00
|
|
|
sctptransport.h \
|
2017-01-31 09:56:59 +00:00
|
|
|
transportstream.h \
|
|
|
|
transportsendbin.h \
|
|
|
|
transportreceivebin.h \
|
|
|
|
utils.h \
|
|
|
|
webrtcsdp.h \
|
2018-09-10 13:52:05 +00:00
|
|
|
webrtcdatachannel.h \
|
2017-01-31 09:56:59 +00:00
|
|
|
webrtctransceiver.h
|
|
|
|
|
|
|
|
libgstwebrtc_la_SOURCES = \
|
|
|
|
gstwebrtc.c \
|
|
|
|
gstwebrtcbin.c \
|
|
|
|
gstwebrtcice.c \
|
|
|
|
gstwebrtcstats.c \
|
|
|
|
icestream.c \
|
|
|
|
nicetransport.c \
|
2018-09-10 13:52:05 +00:00
|
|
|
sctptransport.c \
|
2017-01-31 09:56:59 +00:00
|
|
|
transportstream.c \
|
|
|
|
transportsendbin.c \
|
|
|
|
transportreceivebin.c \
|
|
|
|
utils.c \
|
|
|
|
webrtcsdp.c \
|
2018-09-10 13:52:05 +00:00
|
|
|
webrtcdatachannel.c \
|
2017-01-31 09:56:59 +00:00
|
|
|
webrtctransceiver.c
|
|
|
|
|
|
|
|
libgstwebrtc_la_SOURCES += $(BUILT_SOURCES)
|
|
|
|
noinst_HEADERS += $(built_headers)
|
|
|
|
|
|
|
|
libgstwebrtc_la_CFLAGS = \
|
|
|
|
-I$(top_builddir)/gst-libs \
|
|
|
|
-I$(top_srcdir)/gst-libs \
|
|
|
|
$(GST_PLUGINS_BASE_CFLAGS) \
|
|
|
|
$(GST_BASE_CFLAGS) \
|
|
|
|
$(GST_CFLAGS) \
|
|
|
|
$(GST_SDP_CFLAGS) \
|
|
|
|
$(NICE_CFLAGS)
|
|
|
|
libgstwebrtc_la_LIBADD = \
|
2018-09-10 13:52:05 +00:00
|
|
|
-lgstapp-@GST_API_VERSION@ \
|
2017-01-31 09:56:59 +00:00
|
|
|
$(GST_PLUGINS_BASE_LIBS) \
|
|
|
|
$(GST_BASE_LIBS) \
|
|
|
|
$(GST_LIBS) \
|
|
|
|
$(GST_SDP_LIBS) \
|
|
|
|
$(NICE_LIBS) \
|
2018-09-10 13:52:05 +00:00
|
|
|
$(top_builddir)/gst-libs/gst/webrtc/libgstwebrtc-@GST_API_VERSION@.la \
|
|
|
|
$(top_builddir)/gst-libs/gst/sctp/libgstsctp-@GST_API_VERSION@.la
|
2017-01-31 09:56:59 +00:00
|
|
|
|
|
|
|
libgstwebrtc_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
|
|
|
libgstwebrtc_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS)
|
|
|
|
|
|
|
|
include $(top_srcdir)/common/gst-glib-gen.mak
|