sway

i3-compatible Wayland compositor
git clone https://git.awy.one/sway
Log | Files | Refs | README | LICENSE

commit 859a884e82601044aa4c825cfbfdd53e2b4ef79c
parent 5c78e5cd2c0347873d24e862bfa677bed619bc94
Author: emersion <contact@emersion.fr>
Date:   Sat, 16 Feb 2019 11:57:41 +0100

Disable unneeded wlroots subproject features

Diffstat:
Mmeson.build | 6+++++-
1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/meson.build b/meson.build @@ -60,7 +60,11 @@ rt = cc.find_library('rt') git = find_program('git', required: false) # Try first to find wlroots as a subproject, then as a system dependency -wlroots_proj = subproject('wlroots', required: false) +wlroots_proj = subproject( + 'wlroots', + default_options: ['rootston=disabled', 'examples=disabled'], + required: false, +) if wlroots_proj.found() wlroots = wlroots_proj.get_variable('wlroots') wlroots_conf = wlroots_proj.get_variable('conf_data')