blob: 09c482d65b9ec167991eb6612f3f0482b02e0a8e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
threads = dependency('threads')
executable(
'swayidle', [
'main.c',
],
include_directories: [sway_inc],
dependencies: [
client_protos,
wayland_client,
wayland_server,
wlroots,
swayidle_deps,
],
link_with: [lib_sway_common, lib_sway_client],
install: true
)
|