1

基本上,我可以为 CMake 文件添加 doxygen 样式的标签吗(大多数情况下,我想添加文件和作者标签以与现有的 C++ 代码保持一致)。就像是

###
###@file Stuff.CMake
###@author  Bob Smith <bob.smit@nonubuisness.com>
###
###
###@section EDITS
###
### 2013.10.02 Created
###
###@section DESCRIPTIONS
### Does stuff
###
###@section License
###Copyright Info, License, ect
###
cmake_minimum_required(VERSION 2.8)

###
###@brief Macro that does something
###
###@param bar thing to do something to
###
macro foo(bar)
endmacro()
4

1 回答 1

0

一些可行的方法是将 *.CMake 添加到 doxyfile 中的 FILE_PATTERNS 选项并注释如下:

#///
#///@file Stuff.CMake
#///@author  Bob Smith <bob.smit@nonubuisness.com>
#/// etc.

一件事可能是一个问题是Doxygen不知道CMake语法......

于 2013-10-18T07:14:55.013 回答