mirror of
https://github.com/swaywm/sway.git
synced 2024-11-04 15:33:13 +00:00
0d0ab7c5ce
Does not yet support i3bar json protocol
28 lines
365 B
Meson
28 lines
365 B
Meson
executable(
|
|
'swaybar',
|
|
[
|
|
'bar.c',
|
|
'config.c',
|
|
'event_loop.c',
|
|
'ipc.c',
|
|
'main.c',
|
|
'render.c',
|
|
'status_line.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
|
|
)
|