aboutsummaryrefslogtreecommitdiff
path: root/rootston/meson.build
blob: c2f9a2503a94a0333c2e5d7ddcf5c6acd6a57468 (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
sources = [
	'bindings.c',
	'config.c',
	'cursor.c',
	'desktop.c',
	'ini.c',
	'input.c',
	'keyboard.c',
	'layer_shell.c',
	'main.c',
	'output.c',
	'render.c',
	'seat.c',
	'switch.c',
	'text_input.c',
	'view.c',
	'virtual_keyboard.c',
	'wl_shell.c',
	'xdg_shell_v6.c',
	'xdg_shell.c',
]

if conf_data.get('WLR_HAS_XWAYLAND', 0) == 1
	sources += 'xwayland.c'
endif

executable(
	'rootston',
	sources,
	dependencies: [wlroots, wlr_protos, pixman],
	build_by_default: get_option('rootston'),
)