mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2024-11-03 20:01:16 +00:00
8c2d9794dc
We have a subdirectory specifically for CSS files now, so it makes sense to have the stylesheet that defines fonts to be there too. Signed-off-by: Andrea Bolognani <abologna@redhat.com> Reviewed-by: Daniel P. Berrangé <berrange@redhat.com>
18 lines
453 B
Meson
18 lines
453 B
Meson
docs_css_files = [
|
|
'fonts.css',
|
|
'generic.css',
|
|
'libvirt.css',
|
|
'main.css',
|
|
'mobile.css',
|
|
]
|
|
|
|
install_data(docs_css_files, install_dir: docs_html_dir / 'css')
|
|
|
|
foreach file : docs_css_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 / 'css')
|
|
endforeach
|