sway/client/meson.build
Simon Ser 307ba09b41 Move client helpers from common/ to client/
The sway binary doesn't need to load images nor use the event loop.
2021-07-13 14:54:47 +02:00

17 lines
266 B
Meson

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