diff options
| author | Furkan Sahin <furkan-dev@proton.me> | 2018-03-12 12:21:46 +0100 |
|---|---|---|
| committer | Furkan Sahin <furkan-dev@proton.me> | 2018-03-12 12:21:46 +0100 |
| commit | c8fad9ddd351f52e93cf13e9299b15b39c51d89a (patch) | |
| tree | 7e0a7850ac5558cba6aca42924cd8627b0f62c9b | |
| parent | 2f7ebf16f73aaf17d07f77315bbf794237b8f714 (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') |
