diff options
| author | Furkan Sahin <furkan-dev@proton.me> | 2019-02-17 00:50:53 +0100 |
|---|---|---|
| committer | Furkan Sahin <furkan-dev@proton.me> | 2019-02-17 00:50:53 +0100 |
| commit | 8a05f08b0029e24c3b76bfa7691ce7398367bb25 (patch) | |
| tree | 3f75f336ddad28cfc2bc7a69913dad008af0dfce | |
| parent | 8c2f0a29419d1fbcf524bb2ac0734e38583c1bc4 (diff) | |
Fix Meson subproject boolean default options
| -rw-r--r-- | meson.build | 2 |
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) # Try first to find wlroots as a subproject, then as a system dependency wlroots_proj = subproject( 'wlroots', - default_options: ['rootston=disabled', 'examples=disabled'], + default_options: ['rootston=false', 'examples=false'], required: false, ) if wlroots_proj.found() |
