1
1
mirror of https://github.com/swaywm/sway synced 2024-09-30 00:43:40 +02:00
sway/swaybar/meson.build
Rostislav Pehlivanov 3b6629af3c Revert "Install swaybar and swaybg under /usr/lib/sway"
This reverts commit f2c209c299889ad965ac995049704b1c46176c6d.
2018-05-06 00:20:57 +01:00

29 lines
395 B
Meson

executable(
'swaybar', [
'bar.c',
'config.c',
'event_loop.c',
'i3bar.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,
wayland_cursor,
wlroots,
],
link_with: [lib_sway_common, lib_sway_client],
install: true
)