mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-09 10:59:39 +00:00
2386858a91
For master, without autotools.
24 lines
600 B
Meson
24 lines
600 B
Meson
rtmp2_sources = [
|
|
'gstrtmp2.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,
|
|
)
|
|
pkgconfig.generate(gstrtmp2, install_dir : plugins_pkgconfig_install_dir)
|
|
plugins += [gstrtmp2]
|