Doxygen nie dokumentuje głównej funkcji w main.cpp

Mam main.cpp, który zawiera strukturę, niektóre stałe globalne i funkcję główną.

Uruchomiłem doxygen i jedyna dokumentacja, którą otrzymuję w pliku index.html, jest dla mojej struktury.

Chcę, aby doxygen udokumentował również ten plik index.html, który jest także moim głównym (). Co robię nieprawidłowo?

    /// Definition of Pi
    const auto Pi = 3.141592653589793238462643383279502884197169399;

    /// \struct myStruc
    /// \brief myStruc description
    ///
    struct myStruc
    {
         /// Comments inside myStruc
    };

    /// \file

    /// \brief  Main function
    /// \param  argc An integer argument count of the command line arguments
    /// \param  argv An argument vector of the command line arguments
    /// \return an integer 0 upon exit success
    int main(int argc, char** argv)
    {
        /// Comments I would like to be documented in as well
        return 0;
    }

questionAnswers(4)

yourAnswerToTheQuestion