diff options
author | Drew DeVault <sir@cmpwn.com> | 2018-03-28 15:25:33 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-03-28 15:25:33 -0400 |
commit | 9070950eecded7bfa64e7bca3bb76b150ccc8b72 (patch) | |
tree | 509a9c669bf2679085e27a1ff1b0c95526abf14c /swaybg/meson.build | |
parent | 45a50d5afe013b31d9c94090d990bca49448d396 (diff) | |
parent | d39bda76c4007c42452a81883fefc671b816a74b (diff) | |
download | sway-9070950eecded7bfa64e7bca3bb76b150ccc8b72.tar.xz |
Merge pull request #1638 from swaywm/swaybg-layers
Reimplement swaybg using surface layers
Diffstat (limited to 'swaybg/meson.build')
-rw-r--r-- | swaybg/meson.build | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/swaybg/meson.build b/swaybg/meson.build new file mode 100644 index 00000000..5e10f3c7 --- /dev/null +++ b/swaybg/meson.build @@ -0,0 +1,18 @@ +executable( + 'swaybg', + 'main.c', + include_directories: [sway_inc], + dependencies: [ + cairo, + gdk_pixbuf, + jsonc, + math, + pango, + pangocairo, + sway_protos, + wayland_client, + wlroots, + ], + link_with: [lib_sway_common, lib_sway_client], + install: true +) |