Skip to content

Commit

Permalink
Update doxygen
Browse files Browse the repository at this point in the history
  • Loading branch information
Ria9993 committed Apr 7, 2024
1 parent c65da73 commit 0d9915b
Show file tree
Hide file tree
Showing 3 changed files with 28 additions and 2 deletions.
5 changes: 4 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -36,4 +36,7 @@ ircserv
docs/

# vscode
.vscode/c_cpp_properties.json
.vscode/c_cpp_properties.json

doxygen/
./doxygen
22 changes: 22 additions & 0 deletions BuildLatestDoxygen.sh
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"
3 changes: 2 additions & 1 deletion Source/Server/Server.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,11 @@ namespace IRC
{

/** @class Server
* \internal
* @internal
* @warning See [ \ref irc_server_event_loop_process_flow ] before reading implementation details.
*
* @page irc_server_event_loop_process_flow Server Event Loop Process Flow
* @tableofcontents
* ## [한국어]
* 서버의 메인 이벤트 루프는 모든 소켓 이벤트를 비동기적으로 처리합니다.
* ### Error event
Expand Down

0 comments on commit 0d9915b

Please sign in to comment.