gstreamer/subprojects/gst-plugins-bad/gst/rtmp2/meson.build

25 lines
549 B
Meson

rtmp2_sources = [
'gstrtmp2.c',
'gstrtmp2element.c',
'gstrtmp2locationhandler.c',
'gstrtmp2sink.c',
'gstrtmp2src.c',
'rtmp/amf.c',
'rtmp/rtmpchunkstream.c',
'rtmp/rtmpclient.c',
'rtmp/rtmpconnection.c',
'rtmp/rtmphandshake.c',
'rtmp/rtmpmessage.c',
'rtmp/rtmputils.c',
]
gstrtmp2 = library('gstrtmp2',
rtmp2_sources,
c_args : gst_plugins_bad_args,
include_directories : [configinc, libsinc],
dependencies : [gstbase_dep, gio_dep, libm],
install : true,
install_dir : plugins_install_dir,
)
plugins += [gstrtmp2]