diff options
Diffstat (limited to 'meson_options.txt')
-rw-r--r-- | meson_options.txt | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/meson_options.txt b/meson_options.txt index 8fd00d41b45..87aef95198b 100644 --- a/meson_options.txt +++ b/meson_options.txt @@ -21,7 +21,7 @@ option( 'platforms', type : 'string', - value : 'x11,wayland,drm', + value : 'x11,wayland,drm,surfaceless', description : 'comma separated list of window systems to support. wayland, x11, surfaceless, drm, etc.' ) option( @@ -112,6 +112,13 @@ option( description : 'Build support for GLX platform' ) option( + 'egl', + type : 'combo', + value : 'auto', + choices : ['auto', 'yes', 'no'], + description : 'Build support for EGL platform' +) +option( 'glvnd', type : 'boolean', value : false, |