mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2025-02-10 13:41:35 +00:00
35 lines
715 B
Meson
35 lines
715 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)
|
||
|
|
||
|
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',
|
||
|
)
|
||
|
endforeach
|