mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-15 22:01:27 +00:00
d035501228
Requires Meson 0.48, but the feature will be ignored on older versions so it's safe to add it without bumping the requirement. Documentation: https://github.com/mesonbuild/meson/blob/master/docs/markdown/Reference-manual.md#shared_library
9 lines
325 B
Meson
9 lines
325 B
Meson
shared_library('gstvalidate-default-overrides-1.0',
|
|
sources: 'gst-validate-default-overrides.c',
|
|
version : libversion,
|
|
soversion : soversion,
|
|
darwin_versions : osxversion,
|
|
include_directories : [inc_dirs],
|
|
install: true,
|
|
c_args : [gst_c_args] + ['-D_GNU_SOURCE'],
|
|
dependencies : validate_dep)
|