aboutsummaryrefslogtreecommitdiff
path: root/rootston/meson.build
blob: 8ab872b5981816df367f4342dd9e0fb19bb76786 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
sources = [
	'config.c',
	'cursor.c',
	'desktop.c',
	'ini.c',
	'input.c',
	'keyboard.c',
	'layer_shell.c',
	'main.c',
	'output.c',
	'seat.c',
	'virtual_keyboard.c',
	'wl_shell.c',
	'xdg_shell_v6.c',
	'xdg_shell.c',
]
if get_option('enable-xwayland')
	sources += ['xwayland.c']
endif
executable(
	'rootston', sources, dependencies: [wlroots, wlr_protos, pixman]
)