mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2025-02-10 13:41:35 +00:00
12 lines
280 B
Meson
12 lines
280 B
Meson
|
docs_js_files = [
|
||
|
'main.js',
|
||
|
]
|
||
|
|
||
|
install_data(docs_js_files, install_dir: docs_html_dir / 'js')
|
||
|
|
||
|
# This hack enables us to view the web pages
|
||
|
# from within the uninstalled build tree
|
||
|
foreach file : docs_js_files
|
||
|
configure_file(input: file, output: file, copy: true)
|
||
|
endforeach
|