summaryrefslogtreecommitdiff
path: root/river/protocols/meson.build
diff options
context:
space:
mode:
Diffstat (limited to 'river/protocols/meson.build')
-rw-r--r--river/protocols/meson.build23
1 files changed, 0 insertions, 23 deletions
diff --git a/river/protocols/meson.build b/river/protocols/meson.build
deleted file mode 100644
index 69f01bb..0000000
--- a/river/protocols/meson.build
+++ /dev/null
@@ -1,23 +0,0 @@
-
-wayland_scanner = find_program('wayland-scanner')
-
-protocols = [
- 'river-status-unstable-v1.xml',
- 'river-control-unstable-v1.xml'
-]
-
-gen_client_header = generator(wayland_scanner,
- output: ['@[email protected]'],
- arguments: ['-c', 'client-header', '@INPUT@', '@BUILD_DIR@/@[email protected]'])
-
-gen_private_code = generator(wayland_scanner,
- output: ['@[email protected]'],
- arguments: ['-c', 'private-code', '@INPUT@', '@BUILD_DIR@/@[email protected]'])
-
-client_protocol_srcs = []
-
-foreach protocol : protocols
- client_header = gen_client_header.process(protocol)
- code = gen_private_code.process(protocol)
- client_protocol_srcs += [client_header, code]
-endforeach