diff options
| author | Furkan Sahin <furkan-dev@proton.me> | 2019-02-27 16:01:27 -0500 |
|---|---|---|
| committer | Furkan Sahin <furkan-dev@proton.me> | 2019-02-27 16:01:27 -0500 |
| commit | 7183c5ac9ca41a26c2a03ff16bcc391e75903be2 (patch) | |
| tree | 2e96973a01c2a780d032033558d99865a01fd975 | |
| parent | e62c9741e694a6ca699457e191dcfa2f621e2bf2 (diff) | |
| parent | 26cda10a85aaca0b483f4ee64f1215e11fe4d2ca (diff) | |
Merge pull request #3786 from emersion/wlroots-version
Set minimum wlroots version
| -rw-r--r-- | meson.build | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/meson.build b/meson.build index 3c3c1f41..3ba1e0c3 100644 --- a/meson.build +++ b/meson.build @@ -60,17 +60,19 @@ rt = cc.find_library('rt') git = find_program('git', required: false) # Try first to find wlroots as a subproject, then as a system dependency +wlroots_version = '>=0.4.1' wlroots_proj = subproject( 'wlroots', default_options: ['rootston=false', 'examples=false'], required: false, + version: wlroots_version, ) if wlroots_proj.found() wlroots = wlroots_proj.get_variable('wlroots') wlroots_conf = wlroots_proj.get_variable('conf_data') wlroots_has_xwayland = wlroots_conf.get('WLR_HAS_XWAYLAND') == 1 else - wlroots = dependency('wlroots') + wlroots = dependency('wlroots', version: wlroots_version) wlroots_has_xwayland = cc.get_define('WLR_HAS_XWAYLAND', prefix: '#include <wlr/config.h>', dependencies: wlroots) == '1' endif |
