diff options
author | Drew DeVault <sir@cmpwn.com> | 2018-03-27 15:25:25 -0400 |
---|---|---|
committer | Drew DeVault <sir@cmpwn.com> | 2018-03-28 14:25:19 -0400 |
commit | 8fc3506d5d18a5ec6964b86aba31d0a71657f81c (patch) | |
tree | 6383a8615a302b85c9195c4cfe375842f37ce790 /meson.build | |
parent | 0c2dc7f0ee51aa19ed8303ad9e85b2e36f94c25f (diff) | |
download | swaybg-8fc3506d5d18a5ec6964b86aba31d0a71657f81c.tar.gz swaybg-8fc3506d5d18a5ec6964b86aba31d0a71657f81c.tar.bz2 |
Add solid-color rendering to swaybg
Diffstat (limited to 'meson.build')
-rw-r--r-- | meson.build | 18 |
1 files changed, 16 insertions, 2 deletions
diff --git a/meson.build b/meson.build index 4731502..7f5d6bd 100644 --- a/meson.build +++ b/meson.build @@ -1,8 +1,22 @@ +deps = [ + cairo, + jsonc, + math, + pango, + pangocairo, + sway_protos, + wayland_client, +] + +if gdk_pixbuf.found() + deps += [gdk_pixbuf] +endif + executable( 'swaybg', 'main.c', include_directories: [sway_inc], - dependencies: [wayland_client, sway_protos, jsonc, wlroots], - link_with: [lib_sway_common], + dependencies: deps, + link_with: [lib_sway_common, lib_sway_client], install: true ) |