• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1neon_dep = dependency('neon', version: ['>= 0.27', '<= 0.30.99'],
2                      required : get_option('neon'))
3
4if neon_dep.found()
5  gstneon = library('gstneonhttpsrc',
6    'gstneonhttpsrc.c',
7    c_args : gst_plugins_bad_args,
8    include_directories : [configinc],
9    dependencies : [gstbase_dep, neon_dep],
10    install : true,
11    install_dir : plugins_install_dir)
12  pkgconfig.generate(gstneon, install_dir : plugins_pkgconfig_install_dir)
13endif
14