Skip to content

Instantly share code, notes, and snippets.

@UbuntuEvangelist
Created September 5, 2023 21:40
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save UbuntuEvangelist/47a4d1d4b6d5f25f42579922972ab00c to your computer and use it in GitHub Desktop.
Save UbuntuEvangelist/47a4d1d4b6d5f25f42579922972ab00c to your computer and use it in GitHub Desktop.
How to Install Doxygen on Ubuntu 22.04.3 LTS (jammy)
Doxygen is the de facto standard tool for generating documentation from annotated C++ sources, but it also supports other popular programming languages such as C, Objective-C, C#, PHP, Java, Python, IDL (Corba, Microsoft, and UNO/OpenOffice flavors), Fortran, and to some extent D. Doxygen also supports the hardware description language VHDL.
sudo apt-get install flex
sudo apt-get install bison
git clone https://github.com/doxygen/doxygen.git
cd doxygen
mkdir build
cd build
cmake -G "Unix Makefiles" ..
make
make install
#Doxygen #C #C++ #Objective-C
@UbuntuEvangelist
Copy link
Author

Screenshot from 2023-09-06 03-29-52

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment