aboutsummaryrefslogtreecommitdiffstats
path: root/meson.build
diff options
context:
space:
mode:
authorLibravatar emersion <contact@emersion.fr>2019-02-17 00:50:53 +0100
committerLibravatar emersion <contact@emersion.fr>2019-02-17 00:50:53 +0100
commit806129d3ccef1075e178791c56159e08e868bcaf (patch)
tree1dcc1e0a82a5444f3bc14ad6ed7d783e2ae7f69d /meson.build
parentsway-input.5: document wildcard and identifier troubleshooting (diff)
downloadsway-806129d3ccef1075e178791c56159e08e868bcaf.tar.gz
sway-806129d3ccef1075e178791c56159e08e868bcaf.tar.zst
sway-806129d3ccef1075e178791c56159e08e868bcaf.zip
Fix Meson subproject boolean default options
Diffstat (limited to 'meson.build')
-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()