aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLibravatar emersion <contact@emersion.fr>2019-02-17 00:50:53 +0100
committerLibravatar Drew DeVault <sir@cmpwn.com>2019-02-18 15:11:48 -0500
commitc6b43359e774ce1422e9d469c5081d6a7193dedb (patch)
tree3f75f336ddad28cfc2bc7a69913dad008af0dfce
parentsway-input.5: document wildcard and identifier troubleshooting (diff)
downloadsway-c6b43359e774ce1422e9d469c5081d6a7193dedb.tar.gz
sway-c6b43359e774ce1422e9d469c5081d6a7193dedb.tar.zst
sway-c6b43359e774ce1422e9d469c5081d6a7193dedb.zip
Fix Meson subproject boolean default options
-rw-r--r--meson.build2
1 files changed, 1 insertions, 1 deletions
diff --git a/meson.build b/meson.build
index cfd77ce7..d3172bdd 100644
--- a/meson.build
+++ b/meson.build
@@ -62,7 +62,7 @@ git = find_program('git', required: false)
62# Try first to find wlroots as a subproject, then as a system dependency 62# Try first to find wlroots as a subproject, then as a system dependency
63wlroots_proj = subproject( 63wlroots_proj = subproject(
64 'wlroots', 64 'wlroots',
65 default_options: ['rootston=disabled', 'examples=disabled'], 65 default_options: ['rootston=false', 'examples=false'],
66 required: false, 66 required: false,
67) 67)
68if wlroots_proj.found() 68if wlroots_proj.found()