summaryrefslogtreecommitdiff
path: root/ext/webrtc/Makefile.am
blob: 5f9a714882ccb9fc3476483825c944aa60b5530d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
plugin_LTLIBRARIES = libgstwebrtc.la

noinst_HEADERS = \
	fwd.h \
	gstwebrtcbin.h \
	gstwebrtcice.h \
	gstwebrtcstats.h \
	icestream.h \
	nicetransport.h \
	transportstream.h \
	transportsendbin.h \
	transportreceivebin.h \
	utils.h \
	webrtcsdp.h \
	webrtctransceiver.h

libgstwebrtc_la_SOURCES = \
	gstwebrtc.c \
	gstwebrtcbin.c \
	gstwebrtcice.c \
	gstwebrtcstats.c \
	icestream.c \
	nicetransport.c \
	transportstream.c \
	transportsendbin.c \
	transportreceivebin.c \
	utils.c \
	webrtcsdp.c \
	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 = \
	$(GST_PLUGINS_BASE_LIBS) \
	$(GST_BASE_LIBS) \
	$(GST_LIBS) \
	$(GST_SDP_LIBS) \
	$(NICE_LIBS) \
	$(top_builddir)/gst-libs/gst/webrtc/libgstwebrtc-@GST_API_VERSION@.la

libgstwebrtc_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
libgstwebrtc_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS)

include $(top_srcdir)/common/gst-glib-gen.mak