mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2024-11-03 11:51:11 +00:00
6cb131e5cb
It's the only GIF file we have in our repository. We could convert it to PNG, but that would result in a significantly bigger file (~5.5 KiB vs ~1.5 KiB). Since the image doesn't really add much to the documentation, drop it instead. Signed-off-by: Andrea Bolognani <abologna@redhat.com> Reviewed-by: Peter Krempa <pkrempa@redhat.com>
24 lines
717 B
Meson
24 lines
717 B
Meson
docs_image_files = [
|
|
'event_loop_simple.png',
|
|
'event_loop_worker.png',
|
|
'libvirt-daemon-arch.png',
|
|
'libvirt-driver-arch.png',
|
|
'libvirt-object-model.png',
|
|
'libvirt-virConnect-example.png',
|
|
'migration-managed-direct.png',
|
|
'migration-managed-p2p.png',
|
|
'migration-native.png',
|
|
'migration-tunnel.png',
|
|
'migration-unmanaged-direct.png',
|
|
]
|
|
|
|
install_data(docs_image_files, install_dir: docs_html_dir / 'images')
|
|
|
|
foreach file : docs_image_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 / 'images')
|
|
endforeach
|