aboutsummaryrefslogtreecommitdiffstats
path: root/swaylock/meson.build
blob: 3cde47a440e11412f445f5e10e367192ea8fb32d (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
executable(
	'swaylock', [
		'main.c',
		'password.c',
		'render.c',
		'seat.c'
	],
	include_directories: [sway_inc],
	dependencies: [
		cairo,
		client_protos,
		gdk_pixbuf,
		libpam,
		math,
		pango,
		pangocairo,
		xkbcommon,
		wayland_client,
		wlroots,
	],
	link_with: [lib_sway_common, lib_sway_client],
	install: true
)