aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLibravatar emersion <contact@emersion.fr>2019-02-16 11:57:41 +0100
committerLibravatar Drew DeVault <sir@cmpwn.com>2019-02-18 15:11:48 -0500
commitb02198a0d14d8d58a85d357d94c801bad4c56764 (patch)
treefcb135fb870fb0b8f2a0c38c9fe36cc686c4d9c9
parenttray: use correct parameter to set bus slot to floating (diff)
downloadsway-b02198a0d14d8d58a85d357d94c801bad4c56764.tar.gz
sway-b02198a0d14d8d58a85d357d94c801bad4c56764.tar.zst
sway-b02198a0d14d8d58a85d357d94c801bad4c56764.zip
Disable unneeded wlroots subproject features
-rw-r--r--meson.build6
1 files changed, 5 insertions, 1 deletions
diff --git a/meson.build b/meson.build
index 2336a148..cfd77ce7 100644
--- a/meson.build
+++ b/meson.build
@@ -60,7 +60,11 @@ rt = cc.find_library('rt')
60git = find_program('git', required: false) 60git = find_program('git', required: false)
61 61
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('wlroots', required: false) 63wlroots_proj = subproject(
64 'wlroots',
65 default_options: ['rootston=disabled', 'examples=disabled'],
66 required: false,
67)
64if wlroots_proj.found() 68if wlroots_proj.found()
65 wlroots = wlroots_proj.get_variable('wlroots') 69 wlroots = wlroots_proj.get_variable('wlroots')
66 wlroots_conf = wlroots_proj.get_variable('conf_data') 70 wlroots_conf = wlroots_proj.get_variable('conf_data')