summaryrefslogtreecommitdiffstats
path: root/swayidle/meson.build
blob: f62545f8be65e46357f0cf66d96d9f33f86167a8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
threads = dependency('threads')

executable(
	'swayidle', [
		'main.c',
	],
	include_directories: [sway_inc],
	dependencies: [
		client_protos,
		pixman,
		wayland_client,
		wayland_server,
		wlroots,
		swayidle_deps,
	],
	link_with: [lib_sway_common, lib_sway_client],
	install: true
)