android13/external/skia/tools/doxygen
liiir1985 7f62dcda9f initial 2024-06-22 20:45:49 +08:00
..
mainpage initial 2024-06-22 20:45:49 +08:00
Doxyfile initial 2024-06-22 20:45:49 +08:00
ProdDoxyfile initial 2024-06-22 20:45:49 +08:00
README.md initial 2024-06-22 20:45:49 +08:00
customdoxygen.css initial 2024-06-22 20:45:49 +08:00
footer.html initial 2024-06-22 20:45:49 +08:00
logo.png initial 2024-06-22 20:45:49 +08:00

README.md

Doxygen

To generate all the documentation run the following from this directory:

doxygen Doxyfile

The resulting output goes to

/tmp/doxygen

To view those file locally in your browser run:

cd /tmp/doxygen/html; python -m SimpleHTTPServer 8000

and visit

http://localhost:8000

If you want to have the documentation regenerated on every save then you can install entr and run the following from this directory:

find  ../../include/ ../../src/ . | entr doxygen ./Doxyfile

Install

For a linux desktop you can install the doxygen tool via:

sudo apt install doxygen