summaryrefslogtreecommitdiff
path: root/doc/doxygen/xml/Client/meson.build
blob: 849c30da68192b27239755084e56852b6c0e1f29 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
tgt = custom_target(
	'xml-Client-doc',
	command: [
		gen_doxygen,
		# XXX pass doxygen path as argument
		'--builddir=@OUTDIR@',
		'--section=Client',
		'--output-format=xml',
		wayland_doxygen,
		'@INPUT@',
	],
	input: [ shared_files, client_files ],
	output: [ 'combine.xslt', 'index.xml' ],
	depends: [dot_png, dot_map]
)

doxygen_Client_combine_xslt = tgt[0]
doxygen_Client_index_xml = tgt[1]