2021-09-07 23:45:38 +00:00
|
|
|
wl_protocol_dir = wayland_protos.get_variable('pkgdatadir')
|
2018-03-27 17:35:34 +00:00
|
|
|
|
2022-11-25 09:46:00 +00:00
|
|
|
wayland_scanner_dep = dependency('wayland-scanner', native: true)
|
|
|
|
wayland_scanner = find_program(
|
2023-08-30 14:57:25 +00:00
|
|
|
wayland_scanner_dep.get_variable('wayland_scanner'),
|
2022-11-25 09:46:00 +00:00
|
|
|
native: true,
|
|
|
|
)
|
2018-04-13 05:54:08 +00:00
|
|
|
|
2019-06-23 03:02:24 +00:00
|
|
|
protocols = [
|
2024-06-27 18:01:19 +00:00
|
|
|
wl_protocol_dir / 'stable/tablet/tablet-v2.xml',
|
2022-10-04 07:48:29 +00:00
|
|
|
wl_protocol_dir / 'stable/xdg-shell/xdg-shell.xml',
|
|
|
|
wl_protocol_dir / 'unstable/xdg-output/xdg-output-unstable-v1.xml',
|
|
|
|
wl_protocol_dir / 'unstable/pointer-constraints/pointer-constraints-unstable-v1.xml',
|
|
|
|
wl_protocol_dir / 'unstable/linux-dmabuf/linux-dmabuf-unstable-v1.xml',
|
2022-10-04 07:46:47 +00:00
|
|
|
wl_protocol_dir / 'staging/content-type/content-type-v1.xml',
|
2023-05-05 14:34:35 +00:00
|
|
|
wl_protocol_dir / 'staging/cursor-shape/cursor-shape-v1.xml',
|
2024-08-05 00:13:49 +00:00
|
|
|
wl_protocol_dir / 'staging/tearing-control/tearing-control-v1.xml',
|
2022-10-04 07:48:29 +00:00
|
|
|
'wlr-layer-shell-unstable-v1.xml',
|
|
|
|
'idle.xml',
|
|
|
|
'wlr-output-power-management-unstable-v1.xml',
|
2018-03-27 17:35:34 +00:00
|
|
|
]
|
|
|
|
|
2019-06-23 03:02:24 +00:00
|
|
|
wl_protos_src = []
|
2018-03-27 17:35:34 +00:00
|
|
|
|
2022-10-04 07:48:29 +00:00
|
|
|
foreach xml : protocols
|
2019-06-23 03:02:24 +00:00
|
|
|
wl_protos_src += custom_target(
|
2022-11-25 09:48:07 +00:00
|
|
|
xml.underscorify() + '_c',
|
2019-06-23 03:02:24 +00:00
|
|
|
input: xml,
|
|
|
|
output: '@BASENAME@-protocol.c',
|
|
|
|
command: [wayland_scanner, 'private-code', '@INPUT@', '@OUTPUT@'],
|
|
|
|
)
|
2022-11-25 09:51:20 +00:00
|
|
|
wl_protos_src += custom_target(
|
2019-06-23 03:02:24 +00:00
|
|
|
xml.underscorify() + '_server_h',
|
|
|
|
input: xml,
|
|
|
|
output: '@BASENAME@-protocol.h',
|
|
|
|
command: [wayland_scanner, 'server-header', '@INPUT@', '@OUTPUT@'],
|
|
|
|
)
|
2022-11-25 09:51:20 +00:00
|
|
|
wl_protos_src += custom_target(
|
2019-06-23 03:02:24 +00:00
|
|
|
xml.underscorify() + '_client_h',
|
|
|
|
input: xml,
|
|
|
|
output: '@BASENAME@-client-protocol.h',
|
|
|
|
command: [wayland_scanner, 'client-header', '@INPUT@', '@OUTPUT@'],
|
|
|
|
)
|
2018-03-28 19:47:22 +00:00
|
|
|
endforeach
|