This commit is contained in:
Manuel Alfayate Corchete 2025-10-06 23:41:57 +00:00 committed by GitHub
commit c6b2d067e8
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
5 changed files with 233 additions and 6 deletions

View file

@ -39,6 +39,7 @@ wlroots = dependency('wlroots-0.19', fallback: ['wlroots', 'wlroots'])
wayland_protos = dependency('wayland-protocols', version: '>=1.14')
wayland_server = dependency('wayland-server')
xkbcommon = dependency('xkbcommon')
pixman = dependency('pixman-1')
math = cc.find_library('m')
wl_protocol_dir = wayland_protos.get_variable('pkgdatadir')
@ -51,6 +52,7 @@ wayland_scanner_server = generator(
server_protocols = [
[wl_protocol_dir, 'stable/xdg-shell/xdg-shell.xml'],
[wl_protocol_dir, 'unstable/pointer-constraints/pointer-constraints-unstable-v1.xml'],
]
server_protos_headers = []
@ -145,6 +147,7 @@ executable(
wlroots,
xkbcommon,
math,
pixman,
],
install: true,
)