From 8829a8707ab931d0c00a4d0482c27f014bcd65e5 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Tim-Philipp=20M=C3=BCller?= Date: Thu, 16 Aug 2018 10:13:39 +0100 Subject: [PATCH] meson: options: move gl options into separate section --- meson_options.txt | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/meson_options.txt b/meson_options.txt index b0f8474..bd4e325 100644 --- a/meson_options.txt +++ b/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', @@ -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') -- 2.7.4