aboutsummaryrefslogtreecommitdiff
path: root/rootston/meson.build
blob: d84422d82592ad2314bb5104f9ab77ec70648d0d (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',
	'main.c',
	'output.c',
	'pointer.c',
	'tablet_tool.c',
	'touch.c',
	'xcursor.c',
	'xdg_shell_v6.c',
	'wl_shell.c',
]
if get_option('enable_xwayland')
	sources += ['xwayland.c']
endif
executable(
	'rootston', sources, dependencies: [wlroots, wlr_protos]
)