aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTony Crisci <tony@dubstepdish.com>2017-11-30 11:40:49 -0500
committerTony Crisci <tony@dubstepdish.com>2017-11-30 11:40:49 -0500
commit1d702b6376b49c2e115c5b985ca241aedc40a48b (patch)
tree5ded02647a693ef9e66dff810697b174a21033ea
parent03182706cffc4e996d352c51b143df805f80a928 (diff)
meson build swaymsg
-rw-r--r--meson.build1
-rw-r--r--swaymsg/meson.build8
2 files changed, 9 insertions, 0 deletions
diff --git a/meson.build b/meson.build
index 34122acc..1c322131 100644
--- 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
new file mode 100644
index 00000000..2d678878
--- /dev/null
+++ 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
+)