libvirt/docs/js/meson.build
Pavel Hrdina c22f8975f4 meson: docs/js: install javascript files
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

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