mirror of
https://github.com/swaywm/sway.git
synced 2026-03-06 01:40:42 -05: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
21
client/meson.build
Normal file
21
client/meson.build
Normal 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
|
||||
)
|
||||
Loading…
Add table
Add a link
Reference in a new issue