sway/common/meson.build
Markus Ongyerth 3fb60b6aed remove wlroots dependency from common code
Removes the wlroots dependency from the common code. To remove the
dependency on the header, the defines and log-level enum are copied
over.
This causes a redefine error if both the wlr and the sway log.h are
included.
2018-05-24 21:55:52 +02:00

22 lines
311 B
Meson

lib_sway_common = static_library(
'sway-common',
files(
'background-image.c',
'cairo.c',
'ipc-client.c',
'log.c',
'list.c',
'pango.c',
'readline.c',
'stringop.c',
'unicode.c',
'util.c'
),
dependencies: [
cairo,
gdk_pixbuf,
pango,
pangocairo,
],
include_directories: sway_inc
)