diff options
author | Drew DeVault <sir@cmpwn.com> | 2018-03-15 16:11:38 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-03-15 16:11:38 -0400 |
commit | 75230fdc2b5c45b762e5a68c500a7c5076c19091 (patch) | |
tree | af6d2d8d7b660584bf3cf16e72bf50d6e6a6e1f1 /meson.build | |
parent | 1dca041513105e966c40197da8518c6abea9a79c (diff) | |
parent | bb173672ae1677967ebbe39facb432d06dccd884 (diff) |
Merge pull request #1622 from emersion/wlroots-subproject-fallback
meson: allow wlroots to be a subproject
Diffstat (limited to 'meson.build')
-rw-r--r-- | meson.build | 2 |
1 files changed, 1 insertions, 1 deletions
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') |