Hello,
Some people use Breathe Sphinx plugin to import XML generated by Doxygen to Sphinx.
It means that currently I need to have two targets in my CMakeLists.txt:
doxygen_add_docs(doxygen_xml src include)
and
sphinx_add_docs(docs ALL)
add_dependencies(docs doxygen_xml)
Also path to Doxygen output must be dynamically passed to Sphinx as command-line configuration. See example here.
The project would benefit from better machinery for this case, or at least an example in the docs would be great.
Hello,
Some people use Breathe Sphinx plugin to import XML generated by Doxygen to Sphinx.
It means that currently I need to have two targets in my
CMakeLists.txt:and
Also path to Doxygen output must be dynamically passed to Sphinx as command-line configuration. See example here.
The project would benefit from better machinery for this case, or at least an example in the docs would be great.