2018-03-27 21:25:25 +02:00
|
|
|
lib_sway_common = static_library(
|
|
|
|
'sway-common',
|
2017-11-30 12:25:13 +01:00
|
|
|
files(
|
2018-04-03 03:57:13 +02:00
|
|
|
'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',
|
|
|
|
'list.c',
|
2018-03-29 05:04:20 +02:00
|
|
|
'pango.c',
|
2017-11-30 12:25:13 +01:00
|
|
|
'readline.c',
|
2018-03-27 21:25:25 +02:00
|
|
|
'stringop.c',
|
2018-04-03 20:31:30 +02:00
|
|
|
'unicode.c',
|
2018-03-27 21:25:25 +02:00
|
|
|
'util.c'
|
2017-11-30 12:25:13 +01:00
|
|
|
),
|
2018-04-03 03:57:13 +02:00
|
|
|
dependencies: [
|
|
|
|
cairo,
|
|
|
|
gdk_pixbuf,
|
|
|
|
pango,
|
|
|
|
pangocairo,
|
|
|
|
wlroots
|
|
|
|
],
|
2017-11-30 12:25:13 +01:00
|
|
|
include_directories: sway_inc
|
2017-11-30 09:39:27 +01:00
|
|
|
)
|