整个程序配置分几个部分
Project related configuration options
项目相关,包括:
Build related configuration options
Configuration options related to warning and progress messages
Configuration options related to the input files
Configuration options related to source browsing
Configuration options related to the alphabetical class index
Configuration options related to the HTML output
Configuration options related to the LaTeX output
Configuration options related to the RTF output
Configuration options related to the man page output
Configuration options related to the XML output
Configuration options related to the DOCBOOK output
Configuration options for the AutoGen Definitions output
Configuration options related to the Perl module output
Configuration options related to the preprocessor
Configuration options related to external references
Configuration options related to the dot tool
运行使用
doxygen [Doxygen file]
参考自Doxygen注释风格。
若想要通过Doxygen生成漂亮的文档,有几个地方需要使用Doxygen支持的风格进行注释:
头文件
声明版权,描述文件实现功能,及文件版本信息;
类、结构体定义
描述类或结构体实现的功能,同时也可以包含使用方法或注意事项的简要描述;
类、结构体成员定义
在成员变量的上方进行简要描述;
类成员函数、子例程函数定义
函数功能简要描述;
函数的详细定义
函数实现位置处对函数的功能、参数的含义、返回值的含义、使用本函数需要注意的问题、本函数使用其他类或函数的说明等进行详细描述。
变量名
说明
文件的批注说明
作者的信息
用于class 或function的简易说明
函数中参数的说明
函数的返回情况
描述返回值类型
注解
注意说明
警告
在C风格注释块开始使用两个星号 *
/**
* ... 描述 ...
*/
/** Brief description
* description continued
*
* Detailed description starts here.
*/
/** Detailed description before the variable */
int m_Var;
在doc文件夹内添加doxygen配置文件Doxyfile.in
,对应的CMakeLists.txt
文件写为
find_package(Doxygen)
option(BUILD_DOCUMENTATION "Create and install the HTML based API documentation (requires Doxygen)" ${DOXYGEN_FOUND})
if(BUILD_DOCUMENTATION)
if(NOT DOXYGEN_FOUND)
message(FATAL_ERROR "Doxygen is needed to build the documentation.")
endif()
set(doxyfile_in ${CMAKE_CURRENT_SOURCE_DIR}/Doxyfile.in)
set(doxyfile ${CMAKE_CURRENT_BINARY_DIR}/Doxyfile)
# copy the content from `Doxyfile.in` to `Doxyfile`, replace the @VAR@ variables
configure_file(${doxyfile_in} ${doxyfile} @ONLY)
add_custom_target(doc
COMMAND ${DOXYGEN_EXECUTABLE} ${doxyfile}
WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}
COMMENT "Generating API documentation with Doxygen"
VERBATIM)
install(DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/html DESTINATION share)
endif()
其中configure_file
命令会按照Doxyfile.in
文件内容新生成一个新的文件,参数@ONLY
指定文件Doxyfile.in
内@VAR@
形式的参数会使用CMake变量进行替换。
以上文件全部配置完成后,使用命令make doc
即可生成doxygen说明文档。
手机扫一扫
移动阅读更方便
你可能感兴趣的文章