meson: options: move gl options into separate section
authorTim-Philipp Müller <tim@centricular.com>
Thu, 16 Aug 2018 09:13:39 +0000 (10:13 +0100)
committerTim-Philipp Müller <tim@centricular.com>
Thu, 16 Aug 2018 09:13:39 +0000 (10:13 +0100)
meson_options.txt

index b0f8474..bd4e325 100644 (file)
@@ -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')