Doxygen 更新后,树视图中的“模块”消失

After Doxygen update "Modules" in tree view disapeared

提问人:Rob 提问时间:11/3/2023 更新时间:11/3/2023 访问量:12

问:

我最近将 doxygen 从 1.9.5 更新到 1.9.8。 自更新以来,我在树视图和顶部菜单中缺少“模块”部分。 发行说明中没有与此相关的具体条目。

现在我的项目中是否出现了一些错误的配置,或者这是一个错误?

下面列出了doxigen文件。在更新之前,“模块”部分包含“系统功能”、“运行时服务”、“支持功能”和“项目库”等章节。

我的项目包括两个主要的 dox 文件: - 概述.dox

/**

@mainpage
M1 API documentation \msysBuildVersion, generated on \commonDoxygenBuildDate at \commonDoxygenBuildTime with doxygen V\commonDoxygenBuildVersion


@section SECBASIC Basic Communication Concepts

@copybrief BASIC

See @ref BASIC.


 */

- 和 modules.dox

/**
@defgroup SYS System Functions
@{
    @brief This part of the API contains operation system functions.
@}

@defgroup RUNTIME Runtime Services
@{
    @brief This part of the API is about system services.

    @defgroup RES Resource Service
    @defgroup INF Information Service
@}

@defgroup UTIL Support Functions
@{
    @brief This part of the API contains helper functions useful for implementation user specific applications.
@}

@defgroup MYLIBS Project-Libraries
@{
    @brief This part of the API describes the available libraries.
@}

*/

一旦我切换回 doxygen 版本 1.9.5,一切都恢复正常。

模块 树视图 更新

评论


答: 暂无答案