Reputation: 5432
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
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
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