aboutsummaryrefslogtreecommitdiff
path: root/gcc/doc/cppinternals/conf.py
blob: d9ec1a69125c4fd6c479894a623486d645e0afe0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# Configuration file for the Sphinx documentation builder.

import sys
sys.path.append('../../..//doc')

from baseconf import *

name = 'cppinternals'
project = 'Cpplib Internals'
copyright = '2000-2022 Free Software Foundation, Inc.'
authors = 'Neil Booth'

# Grouping the document tree into Texinfo files. List of tuples
# (source start file, target name, title, author,
#  dir menu entry, description, category)
latex_documents = [
  ('index', f'{name}.tex', project, authors, 'manual'),
]

texinfo_documents = [
  ('index', name, project, authors, None, None, None, True)
]

set_common(name, globals())