aboutsummaryrefslogtreecommitdiff
path: root/backend/meson.build
blob: 67bc1874607d3795d8168fcf6616e1e4a97b3907 (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
52
53
54
55
56
57
58
59
60
61
62
63
64
backend_parts = []
backend_files = files(
	'backend.c',
	'drm/atomic.c',
	'drm/backend.c',
	'drm/drm.c',
	'drm/legacy.c',
	'drm/properties.c',
	'drm/renderer.c',
	'drm/util.c',
	'headless/backend.c',
	'headless/input_device.c',
	'headless/output.c',
	'libinput/backend.c',
	'libinput/events.c',
	'libinput/keyboard.c',
	'libinput/pointer.c',
	'libinput/switch.c',
	'libinput/tablet_pad.c',
	'libinput/tablet_tool.c',
	'libinput/touch.c',
	'multi/backend.c',
	'noop/backend.c',
	'noop/output.c',
	'session/direct-ipc.c',
	'session/noop.c',
	'session/session.c',
	'wayland/backend.c',
	'wayland/output.c',
	'wayland/wl_seat.c',
)

backend_deps = [
	drm,
	egl,
	gbm,
	libinput,
	pixman,
	xkbcommon,
	wayland_server,
	wlr_protos,
	wlr_render,
]

if host_machine.system().startswith('freebsd')
	backend_files += files('session/direct-freebsd.c')
else
	backend_files += files('session/direct.c')
endif

if logind.found()
	backend_files += files('session/logind.c')
	backend_deps += logind
endif

subdir('x11')

lib_wlr_backend = static_library(
	'wlr_backend',
	backend_files,
	include_directories: wlr_inc,
	link_whole: backend_parts,
	dependencies: backend_deps,
)