aboutsummaryrefslogtreecommitdiff
path: root/protocol/meson.build
blob: bbdccba7deca1a3743cbf4a692f9a0f134b34df6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
wayland_scanner = dependency('wayland-scanner', native: true)
wayland_scanner_path = wayland_scanner.get_variable(pkgconfig: 'wayland_scanner')
wayland_scanner_prog = find_program(wayland_scanner_path, native: true)

wayland_scanner_code = generator(
	wayland_scanner_prog,
	output: '@BASENAME@-protocol.c',
	arguments: ['private-code', '@INPUT@', '@OUTPUT@'],
)

wayland_scanner_client = generator(
	wayland_scanner_prog,
	output: '@BASENAME@-client-protocol.h',
	arguments: ['client-header', '@INPUT@', '@OUTPUT@'],
)

protocols = [
	'xdg-output-unstable-v1.xml',
]

protocol_src = []
foreach xml : protocols
	protocol_src += wayland_scanner_code.process(xml)
	protocol_src += wayland_scanner_client.process(xml)
endforeach