mirror of
https://github.com/swaywm/sway.git
synced 2024-11-11 13:04:11 +01:00
Merge pull request #3786 from emersion/wlroots-version
Set minimum wlroots version
This commit is contained in:
commit
51d27d1549
@ -60,17 +60,19 @@ rt = cc.find_library('rt')
|
|||||||
git = find_program('git', required: false)
|
git = find_program('git', required: false)
|
||||||
|
|
||||||
# Try first to find wlroots as a subproject, then as a system dependency
|
# Try first to find wlroots as a subproject, then as a system dependency
|
||||||
|
wlroots_version = '>=0.4.1'
|
||||||
wlroots_proj = subproject(
|
wlroots_proj = subproject(
|
||||||
'wlroots',
|
'wlroots',
|
||||||
default_options: ['rootston=false', 'examples=false'],
|
default_options: ['rootston=false', 'examples=false'],
|
||||||
required: false,
|
required: false,
|
||||||
|
version: wlroots_version,
|
||||||
)
|
)
|
||||||
if wlroots_proj.found()
|
if wlroots_proj.found()
|
||||||
wlroots = wlroots_proj.get_variable('wlroots')
|
wlroots = wlroots_proj.get_variable('wlroots')
|
||||||
wlroots_conf = wlroots_proj.get_variable('conf_data')
|
wlroots_conf = wlroots_proj.get_variable('conf_data')
|
||||||
wlroots_has_xwayland = wlroots_conf.get('WLR_HAS_XWAYLAND') == 1
|
wlroots_has_xwayland = wlroots_conf.get('WLR_HAS_XWAYLAND') == 1
|
||||||
else
|
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'
|
wlroots_has_xwayland = cc.get_define('WLR_HAS_XWAYLAND', prefix: '#include <wlr/config.h>', dependencies: wlroots) == '1'
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user