2021-12-07 16:11:29 +01:00
|
|
|
wayland_client = dependency('wayland-client',
|
2021-12-14 12:10:31 +01:00
|
|
|
fallback: 'wayland',
|
2021-12-07 16:11:29 +01:00
|
|
|
default_options: wayland_project_options,
|
|
|
|
)
|
|
|
|
wlr_deps += wayland_client
|
|
|
|
|
2019-11-22 08:11:15 +01:00
|
|
|
wlr_files += files(
|
|
|
|
'backend.c',
|
|
|
|
'output.c',
|
2020-03-02 17:07:53 +01:00
|
|
|
'seat.c',
|
2019-11-22 08:11:15 +01:00
|
|
|
'tablet_v2.c',
|
|
|
|
)
|
|
|
|
|
|
|
|
client_protos = [
|
2021-01-04 10:51:34 +01:00
|
|
|
'drm',
|
2019-11-22 08:11:15 +01:00
|
|
|
'linux-dmabuf-unstable-v1',
|
|
|
|
'pointer-gestures-unstable-v1',
|
|
|
|
'presentation-time',
|
|
|
|
'relative-pointer-unstable-v1',
|
|
|
|
'tablet-unstable-v2',
|
2021-10-26 08:31:48 +02:00
|
|
|
'xdg-activation-v1',
|
2019-11-22 08:11:15 +01:00
|
|
|
'xdg-decoration-unstable-v1',
|
|
|
|
'xdg-shell',
|
|
|
|
]
|
|
|
|
|
|
|
|
foreach proto : client_protos
|
2020-04-21 15:19:24 +02:00
|
|
|
wlr_files += protocols_client_header[proto]
|
2019-11-22 08:11:15 +01:00
|
|
|
endforeach
|