mirror of
https://github.com/swaywm/sway.git
synced 2024-11-01 05:57:17 +00:00
236ca63419
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.
15 lines
215 B
Meson
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
|
|
)
|