1
1
Fork 0
mirror of https://github.com/swaywm/sway synced 2024-05-24 05:56:10 +02:00
sway/swaynag/meson.build
Drew DeVault 236ca63419 swaybg: split into standalone project
The new upstream is https://github.com/swaywm/swaybg

This commit also refactors our use of gdk-pixbuf a bit, since the only
remaining reverse dependency is swaybar tray support.
2019-04-25 18:44:28 +03:00

21 lines
303 B
Meson

executable(
'swaynag', [
'config.c',
'main.c',
'render.c',
'swaynag.c',
'types.c',
],
include_directories: [sway_inc],
dependencies: [
cairo,
client_protos,
pango,
pangocairo,
wayland_client,
wayland_cursor,
],
link_with: [lib_sway_common, lib_sway_client],
install: true
)