blob: 0efe416e21aabb74101ceb588e6e49a0e405706a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
rtmp_sources = [
'gstrtmp.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],
dependencies : [gstbase_dep, rtmp_dep] + winsock2,
install : true,
install_dir : plugins_install_dir,
)
pkgconfig.generate(gstrtmp, install_dir : plugins_pkgconfig_install_dir)
endif
|