diff options
author | emersion <contact@emersion.fr> | 2018-03-12 12:21:46 +0100 |
---|---|---|
committer | emersion <contact@emersion.fr> | 2018-03-15 21:02:06 +0100 |
commit | bb173672ae1677967ebbe39facb432d06dccd884 (patch) | |
tree | 7e0a7850ac5558cba6aca42924cd8627b0f62c9b | |
parent | 3035db74df147aa5fe7252a626c8c767e5e30631 (diff) |
meson: allow wlroots to be a subproject
-rw-r--r-- | .gitignore | 1 | ||||
-rw-r--r-- | meson.build | 2 |
2 files changed, 2 insertions, 1 deletions
@@ -8,3 +8,4 @@ build/ .lvimrc config-debug wayland-*-protocol.* +/subprojects/wlroots diff --git a/meson.build b/meson.build index fc995c81..f27ac451 100644 --- a/meson.build +++ b/meson.build @@ -21,7 +21,7 @@ prefix = get_option('prefix') jsonc = dependency('json-c', version: '>=0.13') pcre = dependency('libpcre') -wlroots = dependency('wlroots') +wlroots = dependency('wlroots', fallback: ['wlroots', 'wlroots']) wayland_server = dependency('wayland-server') wayland_client = dependency('wayland-client') wayland_egl = dependency('wayland-egl') |