monksy
monksy

Reputation: 14234

Generating Code from a Source File Using Doxygen

I'm using doxygen to generate HTML documentation. I have a C++ source file that contains only global functions. All of the global functions are document, and the documentation is properly generated. For all of the headers in the project there is a link to “see the code that this documentation was generated by.” (as a link to the HTMLized code). The CPP file that the documentation has generated does not create a similar link. How can I force it to link to the code, and generate an HTMLized version?

Upvotes: 1

Views: 2872

Answers (1)

Eugen Constantin Dinca
Eugen Constantin Dinca

Reputation: 9150

You need to set INLINE_SOURCES = YES in the config file, see here for more details.

Upvotes: 1

Related Questions