aboutsummaryrefslogtreecommitdiff
path: root/gcc/doc/cpp/conf.py
blob: 2abfb353a6a9f7c1ea25162ad0dcce41896b7b51 (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
25
26
27
28
29
30
# Configuration file for the Sphinx documentation builder.

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

from baseconf import *

name = 'cpp'
project = 'The C Preprocessor'
copyright = '1987-2022 Free Software Foundation, Inc.'
authors = 'Richard M. Stallman, Zachary Weinberg'

# 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'),
]

# One entry per manual page. List of tuples
# (source start file, name, description, authors, manual section).
man_pages = [
    ('invocation', name, project, [authors], 1),
]

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

set_common(name, globals())