mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-13 12:51:16 +00:00
567a2a7f67
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>
13 lines
408 B
Meson
13 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
|