gstreamer/subprojects/gst-plugins-bad/ext/neon/meson.build
Heiko Becker 567a2a7f67 neon: Allow building against neon 0.33.x
From its NEWS file:

"API and ABI backwards-compatible with 0.27.x and later"

Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/6036>
2024-02-02 00:22:39 +01:00

14 lines
408 B
Meson

neon_dep = dependency('neon', version: ['>= 0.27', '<= 0.33.99'],
required : get_option('neon'))
if neon_dep.found()
gstneon = library('gstneonhttpsrc',
'gstneonhttpsrc.c',
c_args : gst_plugins_bad_args,
include_directories : [configinc],
dependencies : [gstbase_dep, neon_dep],
install : true,
install_dir : plugins_install_dir)
plugins += [gstneon]
endif