diff options
author | Emmanuele Bassi <ebassi@gnome.org> | 2018-02-14 14:04:04 +0000 |
---|---|---|
committer | Emmanuele Bassi <ebassi@gnome.org> | 2018-02-14 14:14:22 +0000 |
commit | 7b32900c55745bb29b391ce334d86b502f34879d (patch) | |
tree | 8b7ada8d91407b96e93ac1950aad9b938755e50b /meson_options.txt | |
parent | 1440db1570f9ca616d6eeb7fe3b3cf7df8d5f37f (diff) | |
download | gtk+-7b32900c55745bb29b391ce334d86b502f34879d.tar.gz |
build: Rename GDK backend options
Drop the 'enable-' prefix, and always enable all platform-specific
backends. We can disable them depending on the platform. This way,
the documentation printed by `meson configure` remains accurate.
Diffstat (limited to 'meson_options.txt')
-rw-r--r-- | meson_options.txt | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/meson_options.txt b/meson_options.txt index 5ac89073ac..07de49a45a 100644 --- a/meson_options.txt +++ b/meson_options.txt @@ -1,14 +1,14 @@ # GDK backends -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', +option('x11-backend', type: 'boolean', value: true, + description : 'Enable the X11 gdk backend (only when building on Linux or macOS)') +option('wayland-backend', type: 'boolean', value: true, + description : 'Enable the wayland gdk backend (only when building on Linux)') +option('broadway-backend', type: 'boolean', value: false, description : 'Enable the broadway (HTML5) gdk backend') -option('enable-win32-backend', type: 'boolean', value: 'false', - description : 'Enable the Windows gdk backend') -option('enable-quartz-backend', type: 'boolean', value: 'false', - description : 'Enable the macOS gdk backend') +option('win32-backend', type: 'boolean', value: true, + description : 'Enable the Windows gdk backend (only when building on Windows)') +option('quartz-backend', type: 'boolean', value: true, + description : 'Enable the macOS gdk backend (only when building on macOS)') # Optional dependencies option('enable-vulkan', type: 'combo', choices : ['yes', 'no', 'auto'], value : 'auto', |