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