1plugin_LTLIBRARIES = libgstwebrtc.la
2
3noinst_HEADERS = \
4	fwd.h \
5	gstwebrtcbin.h \
6	gstwebrtcice.h \
7	gstwebrtcstats.h \
8	icestream.h \
9	nicetransport.h \
10	sctptransport.h \
11	transportstream.h \
12	transportsendbin.h \
13	transportreceivebin.h \
14	utils.h \
15	webrtcsdp.h \
16	webrtcdatachannel.h \
17	webrtctransceiver.h
18
19libgstwebrtc_la_SOURCES = \
20	gstwebrtc.c \
21	gstwebrtcbin.c \
22	gstwebrtcice.c \
23	gstwebrtcstats.c \
24	icestream.c \
25	nicetransport.c \
26	sctptransport.c \
27	transportstream.c \
28	transportsendbin.c \
29	transportreceivebin.c \
30	utils.c \
31	webrtcsdp.c \
32	webrtcdatachannel.c \
33	webrtctransceiver.c
34
35libgstwebrtc_la_SOURCES += $(BUILT_SOURCES)
36noinst_HEADERS += $(built_headers)
37
38libgstwebrtc_la_CFLAGS = \
39	-I$(top_builddir)/gst-libs \
40	-I$(top_srcdir)/gst-libs \
41	$(GST_PLUGINS_BASE_CFLAGS) \
42	$(GST_BASE_CFLAGS) \
43	$(GST_CFLAGS) \
44	$(GST_SDP_CFLAGS) \
45	$(NICE_CFLAGS)
46libgstwebrtc_la_LIBADD = \
47	-lgstapp-@GST_API_VERSION@ \
48	$(GST_PLUGINS_BASE_LIBS) \
49	$(GST_BASE_LIBS) \
50	$(GST_LIBS) \
51	$(GST_SDP_LIBS) \
52	$(NICE_LIBS) \
53	$(top_builddir)/gst-libs/gst/webrtc/libgstwebrtc-@GST_API_VERSION@.la \
54	$(top_builddir)/gst-libs/gst/sctp/libgstsctp-@GST_API_VERSION@.la
55
56libgstwebrtc_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
57libgstwebrtc_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS)
58
59include $(top_srcdir)/common/gst-glib-gen.mak
60