diff options
author | Tim-Philipp Müller <tim@centricular.com> | 2017-03-20 11:44:04 +0000 |
---|---|---|
committer | Emmanuele Bassi <ebassi@gnome.org> | 2017-05-03 15:10:54 +0100 |
commit | 152a25d09915602082022368edc1fb6190baebb8 (patch) | |
tree | 5435d611a07bc593455995e60e25f37e6331ecbc /meson_options.txt | |
parent | e001d95538d2806fd34d6baf376695aec0ba38bb (diff) | |
download | gtk+-152a25d09915602082022368edc1fb6190baebb8.tar.gz |
meson: gdk: add Mir backend bits
Completely untested, might not even build.
Diffstat (limited to 'meson_options.txt')
-rw-r--r-- | meson_options.txt | 14 |
1 files changed, 10 insertions, 4 deletions
diff --git a/meson_options.txt b/meson_options.txt index ec04443638..fe71ac39da 100644 --- a/meson_options.txt +++ b/meson_options.txt @@ -1,4 +1,10 @@ -option('enable-x11-backend', type: 'boolean', value: 'true') -option('enable-wayland-backend', type: 'boolean', value: 'true') -option('enable-broadway-backend', type: 'boolean', value: 'false') -option('enable-vulkan', type: 'combo', choices : ['yes', 'no', 'auto'], value : 'auto') +option('enable-x11-backend', type: 'boolean', value: 'true', + description : 'Enable the X11 gdk backend') +option('enable-wayland-backend', type: 'boolean', value: 'true', + description : 'Enable the wayland gdk backend') +option('enable-broadway-backend', type: 'boolean', value: 'false', + description : 'Enable the broadway (HTML5) gdk backend') +option('enable-mir-backend', type: 'boolean', value: 'false', + description : 'Enable the Mir gdk backend (UNTESTED, NEEDS WORK)') +option('enable-vulkan', type: 'combo', choices : ['yes', 'no', 'auto'], value : 'auto', + description : 'Enable support for the Vulkan graphics API') |