aboutsummaryrefslogtreecommitdiff
path: root/gcc/d/doc/conf.py
blob: c33f28a2f7f629af0c142fd44bb49fe1b3573187 (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 = 'gdc'
project = 'The GNU D Compiler'
copyright = '2006-2022 Free Software Foundation, Inc.'
authors = 'David Friedman, Iain Buclaw'

# 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 = [
    ('invoking-gdc', name, project, [authors], 1),
]

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

set_common(name, globals())