]> git.ipfire.org Git - thirdparty/gcc.git/blob - gcc/doc/cppinternals/conf.py
unswitching of outer loops
[thirdparty/gcc.git] / gcc / doc / cppinternals / 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 = 'cppinternals'
9 project = 'Cpplib Internals'
10 copyright = '2000-2022 Free Software Foundation, Inc.'
11 authors = 'Neil Booth'
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 texinfo_documents = [
21 ('index', name, project, authors, None, None, None, True)
22 ]
23
24 set_common(name, globals())