gstreamer/validate/gst/overrides/meson.build
Nirbheek Chauhan d035501228 meson: Maintain macOS ABI through dylib versioning
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
2018-08-31 14:52:04 +05:30

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)