Add solid-color rendering to swaybg

This commit is contained in:
Drew DeVault 2018-03-27 15:25:25 -04:00
parent eccf0b2598
commit 632bb948b7
11 changed files with 550 additions and 39 deletions

21
client/meson.build Normal file
View file

@ -0,0 +1,21 @@
deps = [
cairo,
pango,
pangocairo,
wlroots,
wayland_client,
]
if gdk_pixbuf.found()
deps += [gdk_pixbuf]
endif
lib_sway_client = static_library(
'sway-client',
files(
'buffer-pool.c',
),
dependencies: deps,
link_with: [lib_sway_common],
include_directories: sway_inc
)