mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-27 04:01:08 +00:00
3c713cc16e
Modernize option selection, so if a required dependency is missing, produce a meaningful error message. Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/1676>
15 lines
759 B
Meson
15 lines
759 B
Meson
option('encoders', type : 'feature', value : 'auto')
|
|
option('drm', type : 'feature', value : 'auto')
|
|
option('x11', type : 'feature', value : 'auto')
|
|
option('glx', type : 'feature', value : 'auto')
|
|
option('wayland', type : 'feature', value : 'auto')
|
|
option('egl', type : 'feature', value : 'auto')
|
|
|
|
# Common feature options
|
|
option('examples', type : 'feature', value : 'auto', yield : true)
|
|
option('tests', type : 'feature', value : 'auto', yield : true)
|
|
option('doc', type : 'feature', value : 'auto', yield: true,
|
|
description: 'Enable documentation.')
|
|
option('package-origin', type : 'string',
|
|
value : 'https://gitlab.freedesktop.org/gstreamer/gstreamer-vaapi/issues',
|
|
yield : true, description : 'package origin URL to use in plugins')
|