Guide
how to install doxygen
1 | $ sudo apt-get install doxygen |
how to use doxygen
1 | $ cd path/to/yourproject |
generate a Doxyfile
with
1 | $ doxygen -g |
generate doc html
and latex
with
1 | doxygen Doxyfile |
output
Searching for include files...
Searching for example files...
Searching for images...
Searching for dot files...
Searching for msc files...
Searching for dia files...
Searching for files to exclude
Searching INPUT for files to process...
...
view doxygen result
open html/index.html
and view results
History
- 20181204: created.