aboutsummaryrefslogtreecommitdiff
path: root/doc/doxygen/xml/meson.build
blob: 6d55c53afef2819be5097887e9c8e426e242afe0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# dot_png: list of PNG targets
# dot_map: list of MAP targets
foreach name, infile: dot_gv
	dot_png += custom_target(
		name + '.png',
		command: [ dot, '-Tpng', '-o@OUTPUT@', '@INPUT@' ],
		input: infile,
		output: name + '.png',
		install: true,
		install_dir: join_paths(publican_install_prefix, publican_html_dir, 'images')
	)

	dot_map += custom_target(
		name + '.map',
		command: [ dot, '-Tcmapx_np', '-o@OUTPUT@', '@INPUT@' ],
		input: infile,
		output: name + '.map',
	)
endforeach

subdir('Client')
subdir('Server')