diff options
author | emersion <contact@emersion.fr> | 2018-05-20 14:04:30 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-05-20 14:04:30 +0100 |
commit | cab0dd8281daecfb4ef2452fddc4b7aae9143fb7 (patch) | |
tree | 9ce53265d014560bf670d2bb9844e4f37e28e60b /protocols/meson.build | |
parent | 1afbfc94f4efb2ec6b021c224b6f432c625970e8 (diff) | |
parent | 836123329504af8b4fd735063eb44690a23e626e (diff) |
Merge pull request #1821 from RyanDwyer/swaylock-multiple-images
Swaylock: Allow per-output images
Diffstat (limited to 'protocols/meson.build')
-rw-r--r-- | protocols/meson.build | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/protocols/meson.build b/protocols/meson.build index 9966c02f..a031245c 100644 --- a/protocols/meson.build +++ b/protocols/meson.build @@ -29,16 +29,18 @@ wayland_scanner_server = generator( client_protocols = [ [wl_protocol_dir, 'stable/xdg-shell/xdg-shell.xml'], + [wl_protocol_dir, 'unstable/xdg-output/xdg-output-unstable-v1.xml'], ['wlr-layer-shell-unstable-v1.xml'], ['idle.xml'], - ['wlr-input-inhibitor-unstable-v1.xml'] + ['wlr-input-inhibitor-unstable-v1.xml'], ] server_protocols = [ [wl_protocol_dir, 'stable/xdg-shell/xdg-shell.xml'], [wl_protocol_dir, 'unstable/xdg-shell/xdg-shell-unstable-v6.xml'], + [wl_protocol_dir, 'unstable/xdg-output/xdg-output-unstable-v1.xml'], ['wlr-layer-shell-unstable-v1.xml'], - ['wlr-input-inhibitor-unstable-v1.xml'] + ['wlr-input-inhibitor-unstable-v1.xml'], ] client_protos_src = [] |