Updated for wlroots 0.15.0

This commit is contained in:
Keith Bowes 2022-01-29 14:34:55 -05:00
parent 309ccd2faf
commit 87c32d58ab
8 changed files with 36 additions and 13 deletions

View file

@ -23,7 +23,9 @@ cc = meson.get_compiler('c')
# Adding include directory
inc_dir = include_directories('include')
wlroots = dependency('wlroots', version: '>=0.13.0')
# Due to the planned refactor of xdg_shell in wlroots 0.16.0, I doubt this will
# build when it's released
wlroots = dependency('wlroots', version: ['>=0.15.0', '<0.16.0'])
wayland_server = dependency('wayland-server', version: '>=1.15')
wayland_protos = dependency('wayland-protocols', version: '>=1.17')
xkbcommon = dependency('xkbcommon')