Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
meson: options: move gl options into separate section
  • Loading branch information
tp-m committed Aug 16, 2018
1 parent 1b6eed6 commit 8829a87
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions meson_options.txt
@@ -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',
Expand All @@ -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')
Expand Down

0 comments on commit 8829a87

Please sign in to comment.