diff options
author | Simon Ser <contact@emersion.fr> | 2022-10-04 11:46:09 +0200 |
---|---|---|
committer | Kirill Primak <vyivel@eclair.cafe> | 2022-10-04 17:13:09 +0000 |
commit | 052ea7b475e0c24c82ff7ccdefad63f3aeb8b020 (patch) | |
tree | 477acf95affa30ec1b61f09975d07db9223c9582 | |
parent | 6832ae14aaa659929ea13057616db34536f7f724 (diff) |
build: alphabetically sort protocol lists
More consistent with the rest of wlroots, and can avoid merge
conflicts.
-rw-r--r-- | protocol/meson.build | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/protocol/meson.build b/protocol/meson.build index 920c181c..a6e5b465 100644 --- a/protocol/meson.build +++ b/protocol/meson.build @@ -13,15 +13,15 @@ wayland_scanner = find_program( protocols = { # Stable upstream protocols - 'xdg-shell': wl_protocol_dir / 'stable/xdg-shell/xdg-shell.xml', 'presentation-time': wl_protocol_dir / 'stable/presentation-time/presentation-time.xml', 'viewporter': wl_protocol_dir / 'stable/viewporter/viewporter.xml', + 'xdg-shell': wl_protocol_dir / 'stable/xdg-shell/xdg-shell.xml', # Staging upstream protocols - 'xdg-activation-v1': wl_protocol_dir / 'staging/xdg-activation/xdg-activation-v1.xml', 'drm-lease-v1': wl_protocol_dir / 'staging/drm-lease/drm-lease-v1.xml', 'ext-session-lock-v1': wl_protocol_dir / 'staging/ext-session-lock/ext-session-lock-v1.xml', 'single-pixel-buffer-v1': wl_protocol_dir / 'staging/single-pixel-buffer/single-pixel-buffer-v1.xml', + 'xdg-activation-v1': wl_protocol_dir / 'staging/xdg-activation/xdg-activation-v1.xml', # Unstable upstream protocols 'fullscreen-shell-unstable-v1': wl_protocol_dir / 'unstable/fullscreen-shell/fullscreen-shell-unstable-v1.xml', @@ -41,9 +41,9 @@ protocols = { # Other protocols 'drm': 'drm.xml', + 'input-method-unstable-v2': 'input-method-unstable-v2.xml', 'kde-idle': 'idle.xml', 'kde-server-decoration': 'server-decoration.xml', - 'input-method-unstable-v2': 'input-method-unstable-v2.xml', 'virtual-keyboard-unstable-v1': 'virtual-keyboard-unstable-v1.xml', 'wlr-data-control-unstable-v1': 'wlr-data-control-unstable-v1.xml', 'wlr-export-dmabuf-unstable-v1': 'wlr-export-dmabuf-unstable-v1.xml', |