mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-18 05:16:05 +00:00
meson: options: move gl options into separate section
This commit is contained in:
parent
1b6eed694c
commit
8829a8707a
1 changed files with 6 additions and 4 deletions
|
@ -1,5 +1,11 @@
|
|||
option('audioresample_format', type : 'combo',
|
||||
choices : ['int', 'float', 'auto'], value : 'auto')
|
||||
option('install_plugins_helper', type: 'string', value: '',
|
||||
description: 'Path of distro helper script to call to install missing plugins')
|
||||
option('iso-codes', type : 'feature', value : 'auto',
|
||||
description: 'Use iso-codes in libgsttag (for language names)')
|
||||
|
||||
# OpenGL integration library options
|
||||
option('gl_api', type : 'array', choices : ['opengl', 'gles2', 'auto'], value : ['auto'],
|
||||
description : 'A comma separated list of opengl APIs to enable building against')
|
||||
option('gl_platform', type : 'array',
|
||||
|
@ -14,10 +20,6 @@ option('opengl_module_name', type : 'string', value : '',
|
|||
description : 'The file to pass to g_module_open to open the libGL library (default: libGL)')
|
||||
option('gles2_module_name', type : 'string', value : '',
|
||||
description : 'The file to pass to g_module_open to open the libGLESv2 library (default: libGLESv2)')
|
||||
option('install_plugins_helper', type: 'string', value: '',
|
||||
description: 'Path of distro helper script to call to install missing plugins')
|
||||
option('iso-codes', type : 'feature', value : 'auto',
|
||||
description: 'Use iso-codes in libgsttag (for language names)')
|
||||
|
||||
# Feature options for plugins with no external deps
|
||||
option('adder', type : 'feature', value : 'auto')
|
||||
|
|
Loading…
Reference in a new issue