Run the doxygen make commands if we're on the ReadTheDocs server
(app)
| 338 | |
| 339 | |
| 340 | def generate_doxygen_xml(app): |
| 341 | """Run the doxygen make commands if we're on the ReadTheDocs server""" |
| 342 | |
| 343 | read_the_docs_build = os.environ.get('READTHEDOCS', None) == 'True' |
| 344 | |
| 345 | if read_the_docs_build: |
| 346 | run_cmake_doxygen() |
| 347 | |
| 348 | |
| 349 | def setup(app): |
nothing calls this directly
no test coverage detected