user2094338
user2094338

Reputation: 11

Automating doxygen doc generation through shell script

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

Answers (1)

zionpi
zionpi

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

Related Questions