How to make an introduction page with Doxygen

后端 未结 6 2009
小蘑菇
小蘑菇 2020-12-02 05:42

I made documentation for my SDK, using Doxygen. It contains the list of files, namespaces, classes, types etc. - everything that I placed as Doxygen comments in the code. No

6条回答
  •  星月不相逢
    2020-12-02 06:33

    Add any file in the documentation which will include your content, for example toc.h:

    @ mainpage Manual SDK
    
    @ section pageTOC Content -# @ref Description -# @ref License -# @ref Item ...

    And in your Doxyfile:

    INPUT = toc.h \
    

    Example (in Russian):

    • scale-tech.ru/luckyBackupW/doc/html/index.html (via web.archive.org)

    • scale-tech.ru/luckyBackupW/doc/html/toc_8h_source.html (via web.archive.org)

提交回复
热议问题