commit 75230fdc2b5c45b762e5a68c500a7c5076c19091
parent 1dca041513105e966c40197da8518c6abea9a79c
Author: Drew DeVault <sir@cmpwn.com>
Date: Thu, 15 Mar 2018 16:11:38 -0400
Merge pull request #1622 from emersion/wlroots-subproject-fallback
meson: allow wlroots to be a subproject
Diffstat:
2 files changed, 2 insertions(+), 1 deletion(-)
diff --git a/.gitignore b/.gitignore
@@ -8,3 +8,4 @@ build/
.lvimrc
config-debug
wayland-*-protocol.*
+/subprojects/wlroots
diff --git 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')