Use of doxygen's \link command

后端 未结 5 1689
一个人的身影
一个人的身影 2021-01-12 01:09

I have an external HTML file I\'d like to have linked form either my doxygen \"Related Pages\" tab or the left hand frame. It seems I need to use the \\link com

5条回答
  •  逝去的感伤
    2021-01-12 01:50

    As other answers here looks bits and pieces for a beginner, here is the complete procedure.

    1) create an html file with content(ex:abc.html) as below

    /*! \mainpage MY TITLE HERE 
     * \section intro_sec External resources
     * My external page
     */
    

    2) Add this file path in config file here INPUT =

    3)Also add your file type here FILE_PATTERNS =

    The above procedure opens your file in doxygen window

    Add the below content to open the file in explorer

    My external page

    Note: If file doesn't open try giving absolute path

提交回复
热议问题