From 032a0bdc9b293bfa04a691f92a85ab88d4907447 Mon Sep 17 00:00:00 2001 From: Aleix Pol Date: Thu, 15 Oct 2020 15:49:41 +0200 Subject: Include a new xdg_activation protocol MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Aleix Pol Gonzalez Reviewed-by: David Edmundson Reviewed-by: Simon Ser Reviewed-by: Jonas Ã…dahl --- meson.build | 12 ++++++++++++ 1 file changed, 12 insertions(+) (limited to 'meson.build') diff --git a/meson.build b/meson.build index 1f30157..c6dd104 100644 --- a/meson.build +++ b/meson.build @@ -37,12 +37,24 @@ unstable_protocols = { 'xwayland-keyboard-grab': ['v1'], } +staging_protocols = { + 'xdg-activation': ['v1'], +} + protocol_files = [] foreach name : stable_protocols protocol_files += ['stable/@0@/@0@.xml'.format(name)] endforeach +foreach name : staging_protocols.keys() + foreach version : staging_protocols.get(name) + protocol_files += [ + 'staging/@0@/@0@-@1@.xml'.format(name, version) + ] + endforeach +endforeach + foreach name : unstable_protocols.keys() foreach version : unstable_protocols.get(name) protocol_files += [ -- cgit v1.2.3