aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSimon Ser <contact@emersion.fr>2022-11-25 10:46:53 +0100
committerSimon Ser <contact@emersion.fr>2022-11-25 10:46:53 +0100
commit5be5a038da8a3789a19945719f2a27233291445d (patch)
tree5d60b22cf6b617571b1ecfc1932f2a309dad5a26
parent366f6ef3d31688631dc453028e108f98a1d7ab57 (diff)
build: unify server & client protocol generation
No need to make a difference here, let's just generate header files for both.
-rw-r--r--protocols/meson.build10
1 files changed, 0 insertions, 10 deletions
diff --git a/protocols/meson.build b/protocols/meson.build
index 59c58122..3f3ad214 100644
--- a/protocols/meson.build
+++ b/protocols/meson.build
@@ -19,13 +19,6 @@ protocols = [
'wlr-output-power-management-unstable-v1.xml',
]
-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',
- 'wlr-input-inhibitor-unstable-v1.xml',
-]
-
wl_protos_src = []
wl_protos_headers = []
@@ -42,9 +35,6 @@ foreach xml : protocols
output: '@BASENAME@-protocol.h',
command: [wayland_scanner, 'server-header', '@INPUT@', '@OUTPUT@'],
)
-endforeach
-
-foreach xml : client_protocols
wl_protos_headers += custom_target(
xml.underscorify() + '_client_h',
input: xml,