颤动的doxygen

发布于 2025-01-29 20:42:48 字数 323 浏览 2 评论 0原文

剂量任何一个使用的doxygen在flutter项目之前生成文档, 我知道Dartdoc扩展程序,但是我需要以Doxygen格式生成它, 我发现有人在flutter中生成了一个用于主文件的文档,但是我只是搜索了我的工作方式太多,从未找到它, 我希望有人可以提供帮助,

我也尝试了C ++和Java,什么都没有

dose any one used doxygen to generate a Documentation for flutter project before ,
I know about dartdoc extension , but I need to generate it with doxygen format ,
I found someone generated a doc for main files in flutter , but I just searched too much to how i do it , and never found it ,
I wish someone could help ,

I tried with C++ and Java too , and nothing goes
enter image description here

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

萌面超妹 2025-02-05 20:42:48

为了能够查看未直接由doxygen直接支持的扩展名的文件的结果,但必须以Doxygen支持的语言中包含代码。像文件):

INPUT_FILTERS += *.dart
EXTENSION_<APPING = dart=java

当文件在不同的目录中或子目录中时,最好查看设置:

INPUT = 
RECURSIVE=YES

也是如此。

如果不直接支持AA语言,但可以用Doxygen支持的语言进行转换,最好还可以查看doxygen滤波器的可能性(诸如input_filter等的设置等)。

To be able to see results of files with extensions that are not directly supported by doxygen, but contain code in a language supported by doxygen a number of settings have to be set (in this case we have Flutter dart files that are actually Java / Java like files):

INPUT_FILTERS += *.dart
EXTENSION_<APPING = dart=java

When files are in a different directories or in subdirectories it is good to look at the settings:

INPUT = 
RECURSIVE=YES

as well.

In case a a language is not supported directly but can be transformed in a language that is supported by doxygen it is good to look at the doxygen filter possibilities as well (settings like INPUT_FILTER etc.).

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文