Reputation: 11
I would like to write a shell script to automate the doxygen by taking input folders automatically by identifying that which folder has doxygen supported file types.
Can anybody please help me on the possible ways of doing it ?
Upvotes: 0
Views: 883
Reputation: 2671
You don't have to use shell script here,as the documention goes:
doxygen -g <config-file>
this will create a configurable file for your needs,and for more information please refer to the link.And also refer to another post: https://stackoverflow.com/questions/51667/best-tips-for-documenting-code-using-doxygen
Upvotes: 1