gstreamer/subprojects/gst-plugins-bad/ext/rtmp/meson.build

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

21 lines
458 B
Meson
Raw Normal View History

rtmp_sources = [
'gstrtmp.c',
'gstrtmpelement.c',
'gstrtmpsink.c',
'gstrtmpsrc.c',
]
rtmp_dep = dependency('librtmp', required : get_option('rtmp'))
if rtmp_dep.found()
gstrtmp = library('gstrtmp',
rtmp_sources,
c_args : gst_plugins_bad_args,
include_directories : [configinc, libsinc],
dependencies : [gstbase_dep, rtmp_dep] + winsock2,
install : true,
install_dir : plugins_install_dir,
)
2018-10-22 09:30:45 +00:00
plugins += [gstrtmp]
endif