-
Notifications
You must be signed in to change notification settings - Fork 3
Installing Doxygen
cnoon edited this page Jan 25, 2013
·
3 revisions
Installing Doxygen is really straight forward. It is important to note that you don't need to install Doxygen unless you want to generate documentation for the libraries you're compiling. If this is what you want to do, then the following is a list of sets to get up and running on your operating system of choice:
Download the dmg Doxygen and install it!
Download the exe Doxygen and install it!
Installing Doxygen on Linux is not bad. You need to compile it from source if you want the latest version. Just follow these steps to get it installed properly:
- First download the Doxygen source distribution
- Unarchive it to $DOXYGEN_HOME
- A good example of $DOXYGEN_HOME is: /home/username/Programming/Tools/doxygen-1.8.2-src
- Open up a terminal
- cd into $DOXYGEN_HOME
- Type "./configure --prefix $INSTALL_HOME"
- A good example of $INSTALL_HOME is /home/username/Programming/Tools/doxygen-1.8.2
- make
- make install
- Add the $INSTALL_HOME/bin to your $PATH environment variable