gstreamer/subprojects/gst-editing-services/meson_options.txt
Nirbheek Chauhan d9449b1d81 meson: Remove duplicate definition of 'examples' option
This is a hard error starting with Meson 0.60.0rc1, due to
https://github.com/mesonbuild/meson/pull/9184#issuecomment-941603358

The upstream change might get reverted before release, but we should
of course fix this regardless.

Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/1127>
2021-10-12 22:54:56 +00:00

26 lines
1.3 KiB
Meson

# Common feature options
option('doc', type : 'feature', value : 'auto', yield: true,
description: 'Enable documentation.')
option('examples', type : 'feature', value : 'auto', yield : true,
description : 'Build examples')
option('introspection', type : 'feature', value : 'auto', yield : true,
description : 'Generate gobject-introspection bindings')
option('tests', type : 'feature', value : 'auto', yield : true,
description : 'Build and enable unit tests')
option('tools', type : 'feature', value : 'auto', yield : true,
description : 'Build ges-launch command line tool')
# GES options
option('bash-completion', type : 'feature', value : 'auto',
description : 'Install bash completion files')
option('pygi-overrides-dir', type : 'string', value : '',
description: 'Path to pygobject overrides directory')
option('xptv', type : 'feature', value : 'auto',
description : 'Build the deprecated xptv formater')
option('python', type : 'feature', value : 'auto', yield: true,
description: 'Enable python formatters.')
option('libpython-dir', type : 'string', value : '',
description: 'Path to find libpythonXX.so')
option('validate', type : 'feature', value : 'auto', yield: true,
description: 'Enable GstValidate integration.')