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
|
plugindir = $(FS_PLUGIN_PATH)
plugin_LTLIBRARIES = libnice-transmitter.la
# sources used to compile this lib
libnice_transmitter_la_SOURCES = \
fs-nice-transmitter.c \
fs-nice-stream-transmitter.c \
fs-nice-agent.c
# flags used to compile this plugin
libnice_transmitter_la_CFLAGS = \
$(FS_INTERNAL_CFLAGS) \
$(FS_CFLAGS) \
$(GST_PLUGINS_BASE_CFLAGS) \
$(GST_CFLAGS) \
$(NICE_CFLAGS)
libnice_transmitter_la_LDFLAGS = $(FS_PLUGIN_LDFLAGS)
libnice_transmitter_la_LIBADD = \
$(top_builddir)/farstream/libfarstream-@FS_MAJORMINOR@.la \
$(FS_LIBS) \
$(GST_BASE_LIBS) \
$(GST_LIBS) \
$(NICE_LIBS)
noinst_HEADERS = \
fs-nice-transmitter.h \
fs-nice-stream-transmitter.h \
fs-nice-agent.h
|