summaryrefslogtreecommitdiff
path: root/ext/opus/meson.build
blob: 22ee796e21f38f0c268b6efa970e18fd77a22a66 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
opus_sources = [
  'gstopus.c',
  'gstopusheader.c',
  'gstopusparse.c',
]

opus_dep = dependency('opus', version : '>= 0.9.4', required : false)

if opus_dep.found()
  gstopus = library('gstopusparse',
    opus_sources,
    c_args : gst_plugins_bad_args,
    link_args : noseh_link_args,
    include_directories : [configinc],
    dependencies : [gstrtp_dep, gstpbutils_dep, gstaudio_dep,
                    gsttag_dep, opus_dep, libm],
    install : true,
    install_dir : plugins_install_dir,
  )
endif