Fix Meson subproject boolean default options

This commit is contained in:
emersion 2019-02-17 00:50:53 +01:00
parent f7f5b172a0
commit 806129d3cc
No known key found for this signature in database
GPG key ID: 0FDE7BE0E88F5E48

View file

@ -62,7 +62,7 @@ git = find_program('git', required: false)
# Try first to find wlroots as a subproject, then as a system dependency # Try first to find wlroots as a subproject, then as a system dependency
wlroots_proj = subproject( wlroots_proj = subproject(
'wlroots', 'wlroots',
default_options: ['rootston=disabled', 'examples=disabled'], default_options: ['rootston=false', 'examples=false'],
required: false, required: false,
) )
if wlroots_proj.found() if wlroots_proj.found()