aboutsummaryrefslogtreecommitdiffstats
path: root/swaynag/meson.build
blob: aef21483547e947ab22ecd749cd3ae966c6bbc0b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
executable(
	'swaynag', [
		'config.c',
		'main.c',
		'render.c',
		'swaynag.c',
		'types.c',
		wl_protos_src,
	],
	include_directories: [sway_inc],
	dependencies: [
		cairo,
		pango,
		pangocairo,
		rt,
		wayland_client,
		wayland_cursor,
	],
	link_with: [lib_sway_common, lib_sway_client],
	install: true
)