To build the documentation, follow the steps below.
First, install Doxygen.
Install Sphinx, Breathe and the theme using the requirements.txt
file in docs
:
cd docs
pip install -r requirements.txt
From docs
, run:
doxygen
make html
If you run into issues rebuilding docs, run make clean
before building again.
After buildling, from the docs
directory, run a local server to view artifacts:
python -m http.server <port> --directory build/html
Point your browser to http://localhost:<port>
to view.