C++ docs: cut down on sphinx warnings

Excludes files we are not using in the toctree
This commit is contained in:
Simon Hausmann 2021-07-02 13:04:49 +02:00
parent c5312fd642
commit e61c62d340

View file

@ -69,7 +69,10 @@ templates_path = ['_templates']
# List of patterns, relative to source directory, that match files and
# directories to ignore when looking for source files.
# This pattern also affects html_static_path and html_extra_path.
exclude_patterns = ['_build', 'Thumbs.db', '.DS_Store']
exclude_patterns = ['_build', 'Thumbs.db', '.DS_Store', 'markdown/tutorial',
'markdown/building.md', 'markdown/development.md', 'markdown/install_qt.md',
'markdown/README.md', 'README.md'
]
# -- Options for HTML output -------------------------------------------------