mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2025-01-09 14:35:25 +00:00
23 lines
572 B
Meson
23 lines
572 B
Meson
|
fonts = [
|
||
|
'LICENSE.rst',
|
||
|
'stylesheet.css',
|
||
|
'overpass-bold-italic.woff',
|
||
|
'overpass-bold.woff',
|
||
|
'overpass-italic.woff',
|
||
|
'overpass-light-italic.woff',
|
||
|
'overpass-light.woff',
|
||
|
'overpass-mono-bold.woff',
|
||
|
'overpass-mono-light.woff',
|
||
|
'overpass-mono-regular.woff',
|
||
|
'overpass-mono-semibold.woff',
|
||
|
'overpass-regular.woff',
|
||
|
]
|
||
|
|
||
|
install_data(fonts, install_dir: docs_html_dir / 'fonts')
|
||
|
|
||
|
# This hack enables us to view the web pages
|
||
|
# from within the uninstalled build tree
|
||
|
foreach file : fonts
|
||
|
configure_file(input: file, output: file, copy: true)
|
||
|
endforeach
|