libvirt/docs/internals/meson.build
Pavel Hrdina 70629df0c2 meson: add rule to build and install only web documentation
Signed-off-by: Pavel Hrdina <phrdina@redhat.com>
Reviewed-by: Peter Krempa <pkrempa@redhat.com>
Reviewed-by: Neal Gompa <ngompa13@gmail.com>
2020-08-03 09:27:06 +02:00

38 lines
849 B
Meson

internals_in_files = [
'command',
'eventloop',
'locking',
'rpc',
]
foreach name : internals_in_files
html_in_file = '@0@.html.in'.format(name)
html_file = '@0@.html'.format(name)
out_file = custom_target(
html_file,
input: html_in_file,
output: html_file,
command: [
meson_python_prog,
python3_prog.path(),
meson_html_gen_prog.path(),
xsltproc_prog.path(),
xmllint_prog.path(),
meson.build_root(),
docs_timestamp,
subsite_xsl,
'@INPUT@',
'@OUTPUT@',
'internals' / html_in_file,
],
depends: [ aclperms_gen ],
depend_files: [ page_xsl ],
install: true,
install_dir: docs_html_dir / 'internals',
)
install_web_deps += out_file
install_web_files += '@0@:@1@'.format(out_file.full_path(), docs_html_dir / 'internals')
endforeach