sway/common/meson.build

22 lines
291 B
Meson
Raw Permalink Normal View History

2018-03-27 21:25:25 +02:00
lib_sway_common = static_library(
'sway-common',
2017-11-30 12:25:13 +01:00
files(
'background-image.c',
2018-03-27 21:25:25 +02:00
'cairo.c',
'ipc-client.c',
2017-11-30 12:25:13 +01:00
'log.c',
'loop.c',
2017-11-30 12:25:13 +01:00
'list.c',
'pango.c',
2018-03-27 21:25:25 +02:00
'stringop.c',
'util.c'
2017-11-30 12:25:13 +01:00
),
dependencies: [
cairo,
gdk_pixbuf,
pango,
pangocairo
],
2017-11-30 12:25:13 +01:00
include_directories: sway_inc
2017-11-30 09:39:27 +01:00
)