aboutsummaryrefslogtreecommitdiffstats
path: root/sway/meson.build
blob: e8e9013f06871bdc96d1ef5f5e0bed4ef7c67956 (plain) (blame)
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
sway_sources = files(
	'main.c',
	'server.c',
	'commands.c',
	'commands/exit.c',
	'ipc-json.c',
	'ipc-server.c',
	'desktop/output.c',
	'desktop/xdg_shell_v6.c',
	'desktop/xwayland.c',
	'tree/container.c',
	'tree/layout.c',
	'tree/workspace.c',
)

sway_deps = [
	pixman,
	wayland_server,
	jsonc,
	wlroots,
	libcap,
	math,
]

executable(
	'sway',
	sway_sources,
	include_directories: [sway_inc],
	dependencies: sway_deps,
	link_with: [lib_sway_common],
	install: true
)