aboutsummaryrefslogtreecommitdiff
path: root/backend/wayland/meson.build
blob: a8e310f3fd06f33c8ef11810ec2ef7996e080851 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
wayland_client = dependency('wayland-client',
	fallback: 'wayland',
	default_options: wayland_project_options,
)
wlr_deps += wayland_client

wlr_files += files(
	'backend.c',
	'output.c',
	'seat.c',
	'pointer.c',
	'tablet_v2.c',
)

client_protos = [
	'drm',
	'linux-dmabuf-unstable-v1',
	'pointer-gestures-unstable-v1',
	'presentation-time',
	'relative-pointer-unstable-v1',
	'tablet-unstable-v2',
	'xdg-activation-v1',
	'xdg-decoration-unstable-v1',
	'xdg-shell',
]

foreach proto : client_protos
	wlr_files += protocols_client_header[proto]
endforeach