summaryrefslogtreecommitdiff
path: root/gst/asfdemux/meson.build
blob: a86188be2425c410a61a52675b7b6c649d0063d3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
asf_sources = [
  'gstasfdemux.c',
  'gstasf.c',
  'gstasfelement.c',
  'asfheaders.c',
  'asfpacket.c',
  'gstrtpasfdepay.c',
  'gstrtspwms.c',
]

gstasf = library('gstasf',
  asf_sources,
  c_args : ugly_args,
  include_directories : [configinc, libsinc],
  dependencies : [gstbase_dep, gstrtp_dep, gstvideo_dep,
                  gstaudio_dep, gsttag_dep, gstriff_dep,
                  gstrtsp_dep, gstsdp_dep],
  install : true,
  install_dir : plugins_install_dir,
)
pkgconfig.generate(gstasf, install_dir : plugins_pkgconfig_install_dir)
plugins += [gstasf]