conf.py.in 541 B

12345678910111213141516171819202122
  1. project = 'fastgltf'
  2. copyright = '2023, spnda'
  3. author = 'spnda'
  4. release = '@PROJECT_VERSION@'
  5. extensions = ["breathe", "sphinx_rtd_theme"]
  6. templates_path = ['_templates']
  7. exclude_patterns = ['_build', 'Thumbs.db', '.DS_Store']
  8. html_theme = 'sphinx_rtd_theme'
  9. # html_static_path = ['_static']
  10. html_theme_options = {
  11. 'display_version': True,
  12. 'titles_only': True,
  13. 'navigation_depth': 5,
  14. }
  15. fastgltf_sources = "@DOXYGEN_INPUT@".split()
  16. breathe_default_project = "fastgltf"
  17. breathe_projects = {"fastgltf": "@DOXYGEN_OUTPUT@/xml"}