diff options
Diffstat (limited to 'meson_options.txt')
-rw-r--r-- | meson_options.txt | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/meson_options.txt b/meson_options.txt index 4428745bef7..6cddf33a5c3 100644 --- a/meson_options.txt +++ b/meson_options.txt @@ -181,14 +181,16 @@ option( ) option( 'gles1', - type : 'boolean', - value : true, + type : 'combo', + value : 'auto', + choices : ['auto', 'true', 'false'], description : 'Build support for OpenGL ES 1.x' ) option( 'gles2', - type : 'boolean', - value : true, + type : 'combo', + value : 'auto', + choices : ['auto', 'true', 'false'], description : 'Build support for OpenGL ES 2.x and 3.x' ) option( |