-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
28 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -36,4 +36,7 @@ ircserv | |
docs/ | ||
|
||
# vscode | ||
.vscode/c_cpp_properties.json | ||
.vscode/c_cpp_properties.json | ||
|
||
doxygen/ | ||
./doxygen |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
sudo apt-get update | ||
sudo apt-get install clang++ | ||
sudo apt-get install python | ||
sudo apt-get install cmake | ||
sudo apt-get install flex | ||
sudo apt-get install bison | ||
sudo apt-get install graphviz | ||
|
||
git clone https://github.com/doxygen/doxygen.git doxygen | ||
cd doxygen | ||
mkdir ./doxygen/build | ||
cd build | ||
cmake -G "Unix Makefiles" .. | ||
make -j$(nproc) | ||
|
||
# Move the executable to the root directory | ||
cd .. | ||
cd .. | ||
mv ./doxygen/build/bin/doxygen ./doxygen | ||
|
||
# Success message to color | ||
echo -e "\e[32mDoxygen build successful\e[0m" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters