summaryrefslogtreecommitdiffstats
path: root/swaybar/meson.build
blob: 41c81a88cea2be52d8330d3299c7a0cc1667edba (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
executable(
	'swaybar', [
		'bar.c',
		'config.c',
		'event_loop.c',
		'i3bar.c',
		'ipc.c',
		'main.c',
		'render.c',
		'status_line.c',
	],
	include_directories: [sway_inc],
	dependencies: [
		cairo,
		client_protos,
		gdk_pixbuf,
		jsonc,
		math,
		pango,
		pangocairo,
		rt,
		wayland_client,
		wayland_cursor,
		wlroots,
	],
	link_with: [lib_sway_common, lib_sway_client],
	install: true,
	install_dir: sway_libexecdir
)