sway

i3-compatible Wayland compositor
git clone https://git.awy.one/sway
Log | Files | Refs | README | LICENSE

commit 1d702b6376b49c2e115c5b985ca241aedc40a48b
parent 03182706cffc4e996d352c51b143df805f80a928
Author: Tony Crisci <tony@dubstepdish.com>
Date:   Thu, 30 Nov 2017 11:40:49 -0500

meson build swaymsg

Diffstat:
Mmeson.build | 1+
Aswaymsg/meson.build | 8++++++++
2 files changed, 9 insertions(+), 0 deletions(-)

diff --git a/meson.build b/meson.build @@ -81,6 +81,7 @@ sway_inc = include_directories('include') subdir('common') subdir('sway') +subdir('swaymsg') config = configuration_data() config.set('sysconfdir', join_paths(prefix, sysconfdir)) diff --git a/swaymsg/meson.build b/swaymsg/meson.build @@ -0,0 +1,8 @@ +executable( + 'swaymsg', + 'main.c', + include_directories: [sway_inc], + dependencies: [jsonc], + link_with: [lib_sway_common], + install: true +)