]> git.ipfire.org Git - thirdparty/gcc.git/blob - gcc/d/doc/conf.py
unswitching of outer loops
[thirdparty/gcc.git] / gcc / d / doc / conf.py
1 # Configuration file for the Sphinx documentation builder.
2
3 import sys
4 sys.path.append('../../..//doc')
5
6 from baseconf import *
7
8 name = 'gdc'
9 project = 'The GNU D Compiler'
10 copyright = '2006-2022 Free Software Foundation, Inc.'
11 authors = 'David Friedman, Iain Buclaw'
12
13 # Grouping the document tree into Texinfo files. List of tuples
14 # (source start file, target name, title, author,
15 # dir menu entry, description, category)
16 latex_documents = [
17 ('index', f'{name}.tex', project, authors, 'manual'),
18 ]
19
20 # One entry per manual page. List of tuples
21 # (source start file, name, description, authors, manual section).
22 man_pages = [
23 ('invoking-gdc', name, project, [authors], 1),
24 ]
25
26 texinfo_documents = [
27 ('index', name, project, authors, None, None, None, True)
28 ]
29
30 set_common(name, globals())