mirror of
https://github.com/NickHu/sway
synced 2024-12-26 21:58:30 +01:00
26 lines
335 B
Meson
26 lines
335 B
Meson
|
executable(
|
||
|
'swaybar',
|
||
|
[
|
||
|
'bar.c',
|
||
|
'config.c',
|
||
|
'event_loop.c',
|
||
|
'main.c',
|
||
|
'render.c',
|
||
|
],
|
||
|
include_directories: [sway_inc],
|
||
|
dependencies: [
|
||
|
cairo,
|
||
|
client_protos,
|
||
|
gdk_pixbuf,
|
||
|
jsonc,
|
||
|
math,
|
||
|
pango,
|
||
|
pangocairo,
|
||
|
rt,
|
||
|
wayland_client,
|
||
|
wlroots,
|
||
|
],
|
||
|
link_with: [lib_sway_common, lib_sway_client],
|
||
|
install: true
|
||
|
)
|