summaryrefslogtreecommitdiff
path: root/gst/asfdemux/meson.build
blob: aa6db98fee9bcadf40a339105a1e35641828062f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
asf_sources = [
  'gstasfdemux.c',
  'gstasf.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]