diff options
author | Drew DeVault <sir@cmpwn.com> | 2018-03-27 13:35:34 -0400 |
---|---|---|
committer | Drew DeVault <sir@cmpwn.com> | 2018-03-28 14:25:19 -0400 |
commit | 0c2dc7f0ee51aa19ed8303ad9e85b2e36f94c25f (patch) | |
tree | 383cfbf1e829a90e22d4909dbef9f7e128a7f2e7 /meson.build | |
parent | 875cf1fce1370d0c1493dbb855838b7d13139a50 (diff) | |
download | swaybg-0c2dc7f0ee51aa19ed8303ad9e85b2e36f94c25f.tar.gz swaybg-0c2dc7f0ee51aa19ed8303ad9e85b2e36f94c25f.tar.bz2 |
Add client protocols and swaybg skeleton
Diffstat (limited to 'meson.build')
-rw-r--r-- | meson.build | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/meson.build b/meson.build new file mode 100644 index 0000000..4731502 --- /dev/null +++ b/meson.build @@ -0,0 +1,8 @@ +executable( + 'swaybg', + 'main.c', + include_directories: [sway_inc], + dependencies: [wayland_client, sway_protos, jsonc, wlroots], + link_with: [lib_sway_common], + install: true +) |