19 lines
237 B
Markdown
19 lines
237 B
Markdown
|
<div align="center">
|
|||
|
|
|||
|
# Sphinx documentation for C / C++
|
|||
|
|
|||
|
</div>
|
|||
|
|
|||
|
## :wrench: Dependencies installation
|
|||
|
|
|||
|
```sh
|
|||
|
pip3 install sphinx breathe
|
|||
|
sudo apt-get install doxygen
|
|||
|
```
|
|||
|
|
|||
|
## :rocket: Compile documentation
|
|||
|
|
|||
|
```sh
|
|||
|
cd docs
|
|||
|
make html
|
|||
|
```
|