lokinet/docs/doxygen.md

28 lines
510 B
Markdown
Raw Normal View History

2021-12-10 16:14:55 +00:00
# Doxygen
building doxygen docs requires the following:
* cmake
* doxygen
* sphinx-build
* sphinx readthedocs theme
* breathe
* exhale
install packages:
2021-12-10 16:59:58 +00:00
$ sudo apt install make cmake doxygen python3-sphinx python3-sphinx-rtd-theme python3-breathe python3-pip
2021-12-10 16:14:55 +00:00
$ pip3 install --user exhale
build docs:
$ mkdir -p build-docs
$ cd build-docs
$ cmake .. && make doc
serve built docs via http, will be served at http://127.0.0.1:8000/
$ python3 -m http.server -d docs/html