是什么 ? | : | a tool that generates documentation from annotated source code. |
开发语言 | : | C |
官方主页 | : | http://doxygen.nl |
源码仓库 | : | https://github.com/doxygen/doxygen |
操作系统 | 包管理器 | 安装命令 |
---|---|---|
Windows | scoop | scoop install doxygen |
Windows | Chocolatey | choco install -y doxygen.install |
macOS | HomeBrew | brew install doxygen |
GNU/Linux | HomeBrew | brew install doxygen |
apt | sudo apt-get install -y doxygen | |
CentOS | yum | sudo yum install -y doxygen |
dnf | sudo dnf install -y doxygen | |
openSUSE | zypper | sudo zypper install -y doxygen |
Alpine Linux | apk | sudo apk add doxygen |
pacman | sudo pacman -Syyu --noconfirm | |
Gentoo Linux | Portage | sudo emerge doxygen |
1、安装依赖
所有时 | Terminal + Shell + GNU CoreUtils |
下载时 | cURL |
解压时 | tar + gzip |
编译时 | cmake、ninja、gcc / GCC | Clang / LLVM、bison |
运行时 | glibc ( libc.so 、ld-linux-x86-64.so ) |
step2、使用curl命令下载Doxygen
源码包 ()
curl -LO http://doxygen.nl/files/doxygen-1.8.16.src.tar.gz
step3、使用tar解压Doxygen
源码包
tar vxf doxygen-1.8.16.src.tar.gz
step4、进入doxygen-1.8.16
目录
cd doxygen-1.8.16
step5、查看doxygen-1.8.16
目录的内容
step6、使用cmake命令配置编译参数
cmake [option]... -D<变量>=<值> -S <sourceDIR> -B <buildDIR>
示例:
cmake \
-DCMAKE_BUILD_TYPE=Release \
-DCMAKE_INSTALL_PREFIX=/usr \
-G Ninja \
-Wno-dev \
-S . \
-B build.d
step7、使用cmake命令进行编译
cmake --build build.d
step8、使用cmake命令进行安装
cmake --install build.d