aboutsummaryrefslogtreecommitdiff
path: root/examples/meson.build
blob: 896f2bd0a40ce4b95e8a12977e00ff4999a725b5 (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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
threads = dependency('threads')
wayland_cursor = dependency('wayland-cursor')

executable('simple', 'simple.c', dependencies: wlroots)
executable('pointer', 'pointer.c', dependencies: wlroots)
executable('touch', 'touch.c', dependencies: wlroots)
executable('tablet', 'tablet.c', dependencies: wlroots)
executable('multi-pointer', 'multi-pointer.c', dependencies: wlroots)

executable(
	'rotation',
	'rotation.c',
    'cat.c',
	dependencies: wlroots,
)

executable(
	'output-layout',
	'output-layout.c',
	dependencies: wlroots
)

executable(
	'screenshot',
	'screenshot.c',
	dependencies: [wayland_client, wlr_protos, wlroots]
)

executable(
	'idle',
	'idle.c',
	dependencies: [wayland_client, wlr_protos, wlroots, threads]
)

executable(
	'idle-inhibit',
	'idle-inhibit.c',
	dependencies: [wayland_client, wlr_protos, wlroots, threads]
)

executable(
	'layer-shell',
	'layer-shell.c',
	dependencies: [wayland_cursor, wayland_client, wlr_protos, wlroots]
)

executable(
	'input-inhibitor',
	'input-inhibitor.c',
	dependencies: [wayland_cursor, wayland_client, wlr_protos, wlroots]
)