sway/swaybar/meson.build

47 lines
700 B
Meson
Raw Normal View History

2018-10-28 10:25:47 +00:00
tray_files = get_option('enable-tray') ? [
'tray/host.c',
'tray/icon.c',
2018-10-28 10:25:47 +00:00
'tray/tray.c',
'tray/watcher.c'
2018-10-28 10:25:47 +00: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 01:38:28 +00:00
'swaybar', [
'bar.c',
'config.c',
'i3bar.c',
'input.c',
2018-03-29 03:56:02 +00:00
'ipc.c',
'main.c',
'render.c',
'status_line.c',
2018-10-28 10:25:47 +00:00
tray_files
],
include_directories: [sway_inc],
2018-10-28 10:25:47 +00:00
dependencies: swaybar_deps,
link_with: [lib_sway_common, lib_sway_client],
install_rpath : rpathdir,
install: true
)