]> git.ipfire.org Git - thirdparty/gcc.git/blob - libgomp/doc/conf.py
unswitching of outer loops
[thirdparty/gcc.git] / libgomp / 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 = 'libgomp'
9 project = 'GNU Offloading and Multi Processing Runtime Library'
10 copyright = '2006-2022 Free Software Foundation, Inc.'
11 authors = 'GCC Developer Community'
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())