summaryrefslogtreecommitdiffstats
path: root/sway
diff options
context:
space:
mode:
authorLibravatar Drew DeVault <sir@cmpwn.com>2019-01-18 15:39:07 -0500
committerLibravatar GitHub <noreply@github.com>2019-01-18 15:39:07 -0500
commit639b66b6769722b5decc8f7a21dd7c5037f3c65c (patch)
treecd93e26b01fe51b76b124b334057011c81974859 /sway
parentMerge pull request #3460 from emersion/output-enable-segfault (diff)
parentmeson: remove extraneous parentheses (diff)
downloadsway-639b66b6769722b5decc8f7a21dd7c5037f3c65c.tar.gz
sway-639b66b6769722b5decc8f7a21dd7c5037f3c65c.tar.zst
sway-639b66b6769722b5decc8f7a21dd7c5037f3c65c.zip
Merge pull request #3452 from emersion/meson-features
Use Meson feature options
Diffstat (limited to 'sway')
-rw-r--r--sway/meson.build3
1 files changed, 1 insertions, 2 deletions
diff --git a/sway/meson.build b/sway/meson.build
index 0a08ee74..94d5abdb 100644
--- a/sway/meson.build
+++ b/sway/meson.build
@@ -194,7 +194,7 @@ sway_deps = [
194 xkbcommon, 194 xkbcommon,
195] 195]
196 196
197if get_option('enable-xwayland') 197if have_xwayland
198 sway_sources += 'desktop/xwayland.c' 198 sway_sources += 'desktop/xwayland.c'
199 sway_deps += xcb 199 sway_deps += xcb
200endif 200endif
@@ -205,6 +205,5 @@ executable(
205 include_directories: [sway_inc], 205 include_directories: [sway_inc],
206 dependencies: sway_deps, 206 dependencies: sway_deps,
207 link_with: [lib_sway_common], 207 link_with: [lib_sway_common],
208 install_rpath : rpathdir,
209 install: true 208 install: true
210) 209)