X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/ce930ad96b622e2b3856b7d9c3d97e60ec2c93a1..db546ad7ab17753b178196b28d89fb9c69b08291:/docs/source/conf.py diff --git a/docs/source/conf.py b/docs/source/conf.py index 019cb17c55..1839d11d5c 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -36,7 +36,7 @@ copyright = u'2002-2019, The SimGrid Team' author = u'The SimGrid Team' # The short X.Y version -version = u'3.24' +version = u'3.24.1' # -- General configuration --------------------------------------------------- @@ -50,39 +50,27 @@ version = u'3.24' extensions = [ 'sphinx.ext.todo', 'breathe', - # 'exhale', 'sphinx.ext.autodoc', 'sphinx.ext.intersphinx', - # 'sphinx.ext.napoleon', 'sphinx.ext.autosummary', - 'hidden_code_block', + 'sphinx_tabs.tabs', 'javasphinx', + 'showfile', + 'autodoxy', ] todo_include_todos = True +# Setup the breath extension breathe_projects = {'simgrid': '../build/xml'} breathe_default_project = "simgrid" -# Setup the exhale extension - -exhale_args = { - # These arguments are required - "containmentFolder": "./api", - "rootFileName": "library_root.rst", - "rootFileTitle": "SimGrid Full API", - "doxygenStripFromPath": "..", - # Suggested optional arguments - "createTreeView": True, - "exhaleExecutesDoxygen": False, - # "exhaleUseDoxyfile": True, -} - +# Setup the autodoxy extension +doxygen_xml = os.path.join(os.path.dirname(__file__), "..", "build", "xml") # For cross-ref generation primary_domain = 'cpp' - # Add any paths that contain templates here, relative to this directory. templates_path = ['_templates']