diff options
author | Drew DeVault <sir@cmpwn.com> | 2019-01-18 15:39:07 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-01-18 15:39:07 -0500 |
commit | 639b66b6769722b5decc8f7a21dd7c5037f3c65c (patch) | |
tree | cd93e26b01fe51b76b124b334057011c81974859 /swaymsg | |
parent | 60220fcecd1d30c022b3137372d339204e8238c6 (diff) | |
parent | 765d7bc94f1b02f0b1135b6412dab8654ec2ac31 (diff) |
Merge pull request #3452 from emersion/meson-features
Use Meson feature options
Diffstat (limited to 'swaymsg')
-rw-r--r-- | swaymsg/meson.build | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/swaymsg/meson.build b/swaymsg/meson.build index 7318349d..b78e6cb0 100644 --- a/swaymsg/meson.build +++ b/swaymsg/meson.build @@ -1,9 +1,8 @@ executable( - 'swaymsg', - 'main.c', - include_directories: [sway_inc], - dependencies: [jsonc, wlroots], - link_with: [lib_sway_common], - install_rpath : rpathdir, - install: true + 'swaymsg', + 'main.c', + include_directories: [sway_inc], + dependencies: [jsonc, wlroots], + link_with: [lib_sway_common], + install: true ) |