configuring the sphinx conf.py file for breathe

This commit is contained in:
Celine Mercier
2015-05-11 17:19:41 +02:00
parent 66296e1c06
commit 428431932f

View File

@ -36,6 +36,7 @@ extensions = [
'sphinx.ext.pngmath', 'sphinx.ext.pngmath',
'sphinx.ext.ifconfig', 'sphinx.ext.ifconfig',
'sphinx.ext.viewcode', 'sphinx.ext.viewcode',
'breathe',
] ]
# Add any paths that contain templates here, relative to this directory. # Add any paths that contain templates here, relative to this directory.
@ -289,3 +290,9 @@ texinfo_documents = [
# If true, do not generate a @detailmenu in the "Top" node's menu. # If true, do not generate a @detailmenu in the "Top" node's menu.
#texinfo_no_detailmenu = False #texinfo_no_detailmenu = False
#Breathe configuration
sys.path.append( "/Users/celinemercier/Documents/workspace/OBITools3/doc/breathe/" )
breathe_projects = { "OBITools3": "/Users/celinemercier/Documents/workspace/OBITools3/doc/doxygen/xml/" }
breathe_default_project = "OBITools3"