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 | 632bb948b7ffbb08a6e965dabf88347afd0a1fa8 (patch) | |
| tree | cbd9d4e4e3a7c605d2b0a5e3e66ce35554a74c4b /client/meson.build | |
| parent | eccf0b25987b2b194031edf3415e9f09a7ad7119 (diff) | |
Add solid-color rendering to swaybg
Diffstat (limited to 'client/meson.build')
| -rw-r--r-- | client/meson.build | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/client/meson.build b/client/meson.build new file mode 100644 index 00000000..597899ce --- /dev/null +++ b/client/meson.build @@ -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 +) |
