summaryrefslogtreecommitdiff
path: root/gst/rtmp2/meson.build
blob: e9cabbd64757a27f073e9c7dc3f2a0a4b33fe7a4 (plain)
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
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,
)
pkgconfig.generate(gstrtmp2, install_dir : plugins_pkgconfig_install_dir)
plugins += [gstrtmp2]