Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我的文件结构如下:
每个moduleX.c文件都包含一个函数void test(int param1, int param2),因为模块可以单独存在。但是每个函数都有自己特定的模块实现,因此需要自己的文档。
moduleX.c
void test(int param1, int param2)
现在,当我要求 Doxygen 从顶层文件夹开始递归生成文档时modules,它不会为test()每个模块中返回的函数生成文档。
modules
test()
如何强制 Doxygen 生成文档?