This README provides instructions on how to generate and view the project documentation using Doxygen.
Ensure that you have Doxygen installed on your system. If not, you can install it using the following command on a Linux machine:
sudo apt-get install doxygenTo generate the documentation, navigate to the directory containing the Doxyfile and run the following command:
doxygen DoxyfileThis will generate the documentation in the specified output directory (usually html and/or latex).
The main page of the documentation is usually index.html in the html directory. To view it, open it with a web browser. If you're using a Linux machine, you can use the following command:
xdg-open docs/html/index.htmlThis will open the main page of the documentation in your default web browser.
To use the man pages you first need to generate the documentation using the following command:
make docsThen you need to add the directory containing the man pages to your MANPATH environment variable.
you can do it like this:
export MANPATH=$MANPATH:$PWD/docs/man