• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1merge_mapcoords_xsl = files('merge-mapcoords.xsl')
2
3subdir('sources')
4
5custom_target(
6	'Wayland-docbook-html',
7	command: [
8		xmlto,
9		'--skip-validation',
10		'--stringparam', 'chunk.section.depth=0',
11		'--stringparam', 'toc.section.depth=1',
12		'--stringparam', 'generate.consistent.ids=1',
13		'--stringparam', 'html.stylesheet=css/default.css',
14		'-o', '@OUTPUT@',
15		'html',
16		'@INPUT@'
17	],
18	input: publican_processed_main,
19	output: publican_html_dir,
20	depend_files: publican_copied_sources,
21	depends: [
22		publican_processed_targets,
23		ClientAPI_xml,
24		ServerAPI_xml,
25		ProtocolSpec_xml,
26		ProtocolInterfaces_xml
27	],
28	build_by_default: true,
29	install: true,
30	install_dir: publican_install_prefix
31)
32