1
1
Fork 0
mirror of https://github.com/swaywm/sway synced 2024-06-18 17:49:28 +02:00
sway/swaybar/meson.build

45 lines
668 B
Meson
Raw Normal View History

2018-10-28 11:25:47 +01:00
tray_files = get_option('enable-tray') ? [
'tray/tray.c',
'tray/watcher.c'
2018-10-28 11:25:47 +01:00
] : []
swaybar_deps = [
cairo,
client_protos,
gdk_pixbuf,
jsonc,
math,
pango,
pangocairo,
rt,
wayland_client,
wayland_cursor,
wlroots,
]
if get_option('enable-tray')
if systemd.found()
swaybar_deps += systemd
elif elogind.found()
swaybar_deps += elogind
endif
endif
executable(
2018-03-31 03:38:28 +02:00
'swaybar', [
'bar.c',
'config.c',
'i3bar.c',
'input.c',
2018-03-29 05:56:02 +02:00
'ipc.c',
'main.c',
'render.c',
'status_line.c',
2018-10-28 11:25:47 +01:00
tray_files
],
include_directories: [sway_inc],
2018-10-28 11:25:47 +01:00
dependencies: swaybar_deps,
link_with: [lib_sway_common, lib_sway_client],
install_rpath : rpathdir,
install: true
)