sway/common/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

19 lines
298 B
Meson

lib_sway_common = static_library(
'sway-common',
files(
'cairo.c',
'ipc-client.c',
'log.c',
'list.c',
'pango.c',
'stringop.c',
'util.c'
),
dependencies: [
cairo,
pango,
pangocairo,
wayland_client.partial_dependency(compile_args: true)
],
include_directories: sway_inc
)