gcc/libitm/doc/conf.py
2022-11-14 09:35:03 +01:00

24 lines
No EOL
630 B
Python

# Configuration file for the Sphinx documentation builder.
import sys
sys.path.append('../..//doc')
from baseconf import *
name = 'libitm'
project = 'The GNU Transactional Memory Library'
copyright = '2011-2022 Free Software Foundation, Inc.'
authors = 'GCC Developer Community'
# 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())