Engine
Engine

Reputation: 5432

how to get my .cpp file in doxygen documentation too?

I have a c++ project in which I have 2 .hpp files and their .cpp files, I commented all of them but when I run Doxygen I only get .hpp files ? any idea how can i get my source files too ? is possible at least ?

Upvotes: 2

Views: 7195

Answers (2)

Steve
Steve

Reputation: 514

In DoxyWizard, go to Expert->Input then scroll down to FILE_PATTERNS. Make sure the .cpp extension is listed. If not, insert it into the list.

Upvotes: 2

user142650
user142650

Reputation:

Did you try generating the doxygen config file and then see if you'd like to modify anything?

doxygen -g "config_file_name"

Then run doxygen as follows:

doxygen "config_file_name"

Upvotes: 0

Related Questions