3 Doxygen¶
3.1 Normal Use of Doxygen Steps¶
Install Doxygen ( Personal opinion, do not use GUI version ).
Go to your repo directory.
Open terminal here, type in
doxygen -g
to generate a Doxygen config file.Open the config file with editor, and go through some important tags, like “PROJECT_NAME”, “INPUT”, “USE_MDFILE_AS_MAINPAGE”, etc.
Modify the comment in your code so that it could be seen by doxygen.
Use
doxygen Doxygen
to run the building process.