summaryrefslogtreecommitdiff
path: root/transmitters/shm/Makefile.am
blob: e56a1b9c2888fead0ef53961883e6714a12c33db (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

plugindir = $(FS_PLUGIN_PATH)

plugin_LTLIBRARIES = libshm-transmitter.la

# sources used to compile this lib
libshm_transmitter_la_SOURCES = \
	fs-shm-transmitter.c \
	fs-shm-stream-transmitter.c

# flags used to compile this plugin
libshm_transmitter_la_CFLAGS = \
	$(FS_INTERNAL_CFLAGS) \
	$(FS_CFLAGS) \
	$(GST_PLUGINS_BASE_CFLAGS) \
	$(GST_CFLAGS)
libshm_transmitter_la_LDFLAGS = $(FS_PLUGIN_LDFLAGS)
libshm_transmitter_la_LIBTOOLFLAGS = $(PLUGIN_LIBTOOLFLAGS)
libshm_transmitter_la_LIBADD = \
	$(top_builddir)/farstream/libfarstream-@FS_APIVERSION@.la \
	$(FS_LIBS) \
	$(GST_BASE_LIBS) \
	$(GST_LIBS)

noinst_HEADERS = \
	fs-shm-transmitter.h \
	fs-shm-stream-transmitter.h