mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2024-11-03 11:51:11 +00:00
70629df0c2
Signed-off-by: Pavel Hrdina <phrdina@redhat.com> Reviewed-by: Peter Krempa <pkrempa@redhat.com> Reviewed-by: Neal Gompa <ngompa13@gmail.com>
14 lines
384 B
Meson
14 lines
384 B
Meson
docs_js_files = [
|
|
'main.js',
|
|
]
|
|
|
|
install_data(docs_js_files, install_dir: docs_html_dir / 'js')
|
|
|
|
foreach file : docs_js_files
|
|
# This hack enables us to view the web pages
|
|
# from within the uninstalled build tree
|
|
configure_file(input: file, output: file, copy: true)
|
|
|
|
install_web_files += '@0@:@1@'.format(meson.current_source_dir() / file, docs_html_dir / 'js')
|
|
endforeach
|