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

View file

@ -1,12 +1,23 @@
lib_sway_common = static_library('sway-common',
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',
'util.c',
'stringop.c',
'readline.c',
'ipc-client.c'
'stringop.c',
'util.c'
),
dependencies: [ wlroots ],
dependencies: deps,
include_directories: sway_inc
)