blob: 7ca115f5e03e4de8cad9ac9edfc49bf22a593b6c [file] [log] [blame]
Peter Maydell09285232020-01-23 15:22:40 +00001# -*- coding: utf-8 -*-
2#
3# QEMU documentation build configuration file for the 'system' manual.
4#
5# This includes the top level conf file and then makes any necessary tweaks.
6import sys
7import os
8
9qemu_docdir = os.path.abspath("..")
10parent_config = os.path.join(qemu_docdir, "conf.py")
11exec(compile(open(parent_config, "rb").read(), parent_config, 'exec'))
12
13# This slightly misuses the 'description', but is the best way to get
14# the manual title to appear in the sidebar.
15html_theme_options['description'] = u'System Emulation User''s Guide'
Peter Maydellacab9232020-01-23 15:22:40 +000016# One entry per manual page. List of tuples
17# (source start file, name, description, authors, manual section).
18man_pages = [
19 ('qemu-block-drivers', 'qemu-block-drivers',
20 u'QEMU block drivers reference',
21 ['Fabrice Bellard and the QEMU Project developers'], 7)
22]