mirror of
https://github.com/cage-kiosk/cage.git
synced 2026-04-14 08:22:05 -04:00
Merge a94cdbec67 into 3783af4fad
This commit is contained in:
commit
d401471b29
4 changed files with 51 additions and 29 deletions
|
|
@ -40,7 +40,12 @@ wayland_server = dependency('wayland-server')
|
|||
xkbcommon = dependency('xkbcommon')
|
||||
math = cc.find_library('m')
|
||||
|
||||
have_xwayland = wlroots.get_variable(pkgconfig: 'have_xwayland', internal: 'have_xwayland') == 'true'
|
||||
xwayland_opt = get_option('xwayland')
|
||||
_wlroots_has_xwayland = wlroots.get_variable(pkgconfig: 'have_xwayland', internal: 'have_xwayland') == 'true'
|
||||
if xwayland_opt.enabled() and not _wlroots_has_xwayland
|
||||
error('wlroots was built without XWayland support')
|
||||
endif
|
||||
have_xwayland = _wlroots_has_xwayland and not xwayland_opt.disabled()
|
||||
|
||||
version = '@0@'.format(meson.project_version())
|
||||
git = find_program('git', native: true, required: false)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue