mirror of
https://github.com/swaywm/sway.git
synced 2026-03-09 05:34:13 -04:00
Add solid-color rendering to swaybg
This commit is contained in:
parent
eccf0b2598
commit
632bb948b7
11 changed files with 550 additions and 39 deletions
|
|
@ -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
|
||||
)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue