aboutsummaryrefslogtreecommitdiff
path: root/swaybar
diff options
context:
space:
mode:
authorDrew DeVault <sir@cmpwn.com>2019-01-18 15:39:07 -0500
committerGitHub <noreply@github.com>2019-01-18 15:39:07 -0500
commit639b66b6769722b5decc8f7a21dd7c5037f3c65c (patch)
treecd93e26b01fe51b76b124b334057011c81974859 /swaybar
parent60220fcecd1d30c022b3137372d339204e8238c6 (diff)
parent765d7bc94f1b02f0b1135b6412dab8654ec2ac31 (diff)
Merge pull request #3452 from emersion/meson-features
Use Meson feature options
Diffstat (limited to 'swaybar')
-rw-r--r--swaybar/meson.build5
1 files changed, 2 insertions, 3 deletions
diff --git a/swaybar/meson.build b/swaybar/meson.build
index 312ca97b..b35f8169 100644
--- a/swaybar/meson.build
+++ b/swaybar/meson.build
@@ -1,4 +1,4 @@
-tray_files = get_option('enable-tray') ? [
+tray_files = have_tray ? [
'tray/host.c',
'tray/icon.c',
'tray/item.c',
@@ -19,7 +19,7 @@ swaybar_deps = [
wayland_cursor,
wlroots,
]
-if get_option('enable-tray')
+if have_tray
if systemd.found()
swaybar_deps += systemd
elif elogind.found()
@@ -42,6 +42,5 @@ executable(
include_directories: [sway_inc],
dependencies: swaybar_deps,
link_with: [lib_sway_common, lib_sway_client],
- install_rpath : rpathdir,
install: true
)