1
1
mirror of https://github.com/swaywm/sway synced 2024-11-18 00:24:17 +01:00
sway/common/meson.build
2018-03-28 14:25:19 -04:00

24 lines
293 B
Meson

deps = [
cairo,
wlroots
]
if gdk_pixbuf.found()
deps += [gdk_pixbuf]
endif
lib_sway_common = static_library(
'sway-common',
files(
'cairo.c',
'ipc-client.c',
'log.c',
'list.c',
'readline.c',
'stringop.c',
'util.c'
),
dependencies: deps,
include_directories: sway_inc
)