1
1
Fork 0
mirror of https://github.com/swaywm/sway synced 2024-05-27 21:26:25 +02:00
sway/client/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

15 lines
215 B
Meson

lib_sway_client = static_library(
'sway-client',
files(
'pool-buffer.c',
),
dependencies: [
cairo,
pango,
pangocairo,
wayland_client
],
link_with: [lib_sway_common],
include_directories: sway_inc
)