How to make an introduction page with Doxygen

后端 未结 6 2000
小蘑菇
小蘑菇 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:18

    I tried all the above with v 1.8.13 to no avail. What worked for me (on macOS) was to use the doxywizard->Expert tag to fill the USE_MD_FILE_AS_MAINPAGE setting.

    It made the following changes to my Doxyfile:

    USE_MDFILE_AS_MAINPAGE = ../README.md
    ...
    INPUT                  = ../README.md \
                             ../sdk/include \
                             ../sdk/src
    

    Note the line termination for INPUT, I had just been using space as a separator as specified in the documentation. AFAICT this is the only change between the not-working and working version of the Doxyfile.

提交回复
热议问题