基本上,我可以为 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()