summaryrefslogtreecommitdiff
path: root/ext/shout2/meson.build
blob: ae7795882dbf28bbc1d221ee6fd6170a280261c4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
shout2_sources = ['gstshout2.c']

shout2_dep = dependency('shout', version : '>= 2.0', required : false)

if shout2_dep.found()
  gstshout2 = library('gstshout2',
    shout2_sources,
    c_args : gst_plugins_good_args,
    include_directories : [configinc, libsinc],
    dependencies : [gstbase_dep, shout2_dep],
    install : true,
    install_dir : plugins_install_dir,
  )
endif