sway/client/meson.build

18 lines
266 B
Meson
Raw Normal View History

2018-03-27 15:25:25 -04:00
lib_sway_client = static_library(
'sway-client',
files(
'background-image.c',
'loop.c',
2018-03-28 12:21:50 -04:00
'pool-buffer.c',
2018-03-27 15:25:25 -04:00
),
2018-03-28 12:21:50 -04:00
dependencies: [
cairo,
pango,
pangocairo,
wayland_client,
gdk_pixbuf,
2018-03-28 12:21:50 -04:00
],
2018-03-27 15:25:25 -04:00
link_with: [lib_sway_common],
include_directories: sway_inc
)