aboutsummaryrefslogtreecommitdiffstats
path: root/meson.build
diff options
context:
space:
mode:
authorLibravatar Pascal Pascher <aur@clouddrop.de>2018-07-24 23:37:41 +0200
committerLibravatar Pascal Pascher <aur@clouddrop.de>2018-07-24 23:37:41 +0200
commit2bf893248a94c7f70a9557aad4a8228731041eeb (patch)
treeec86137e1b5881151b20917f311ecce3d24fba8f /meson.build
parentAdded meson option "enable_xwayland" (default: true) to enable/disable xwayla... (diff)
downloadsway-2bf893248a94c7f70a9557aad4a8228731041eeb.tar.gz
sway-2bf893248a94c7f70a9557aad4a8228731041eeb.tar.zst
sway-2bf893248a94c7f70a9557aad4a8228731041eeb.zip
style fixes, exclude sway/desctop/xwayland.c when enable_xwayland: false
Diffstat (limited to 'meson.build')
-rw-r--r--meson.build4
1 files changed, 2 insertions, 2 deletions
diff --git a/meson.build b/meson.build
index a2def755..06299618 100644
--- a/meson.build
+++ b/meson.build
@@ -49,9 +49,9 @@ git = find_program('git', required: false)
49conf_data = configuration_data() 49conf_data = configuration_data()
50 50
51if get_option('enable-xwayland') 51if get_option('enable-xwayland')
52 conf_data.set('HAVE_XWAYLAND', true) 52 conf_data.set('HAVE_XWAYLAND', true)
53else 53else
54 conf_data.set('HAVE_XWAYLAND', false) 54 conf_data.set('HAVE_XWAYLAND', false)
55endif 55endif
56 56
57if gdk_pixbuf.found() 57if gdk_pixbuf.found()