aboutsummaryrefslogtreecommitdiff
path: root/rootston
diff options
context:
space:
mode:
authorScott Anderson <scott@anderso.nz>2018-08-22 20:41:25 +1200
committerScott Anderson <scott@anderso.nz>2018-08-22 20:41:25 +1200
commit560e96aa57dc746adcbd5297c3544edd16c0626e (patch)
tree8f99d768404cfce072046d65d5ed0109476e0d84 /rootston
parent784c20c82fb6fb84c5ce49993b5a2ec0bda13475 (diff)
Update rootston to use new option
Diffstat (limited to 'rootston')
-rw-r--r--rootston/meson.build7
1 files changed, 5 insertions, 2 deletions
diff --git a/rootston/meson.build b/rootston/meson.build
index b461e1a0..9d1decce 100644
--- a/rootston/meson.build
+++ b/rootston/meson.build
@@ -11,8 +11,8 @@ sources = [
'seat.c',
'virtual_keyboard.c',
'wl_shell.c',
- 'xdg_shell_v6.c',
'xdg_shell.c',
+ 'xdg_shell_v6.c',
]
if conf_data.get('WLR_HAS_XWAYLAND', false)
@@ -20,5 +20,8 @@ if conf_data.get('WLR_HAS_XWAYLAND', false)
endif
executable(
- 'rootston', sources, dependencies: [wlroots, wlr_protos, pixman]
+ 'rootston',
+ sources,
+ dependencies: [wlroots, wlr_protos, pixman],
+ build_by_default: get_option('rootston'),
)