How to edit doxygen.config from shell script?

Posted by Sayan Ghosh on Stack Overflow See other posts from Stack Overflow or by Sayan Ghosh
Published on 2010-05-02T15:40:07Z Indexed on 2010/05/02 15:47 UTC
Read the original article Hit count: 214

Filed under:
|

Hi,

I tried using Apple's shell script to automate doc set creation with every build (and loading that in XCode) - http://developer.apple.com/tools/creatingdocsetswithdoxygen.html but found that it had some bugs. Firstly it's not updating the entries in doxygen.config, perhaps one needs to put the settings in the exact hierarchy as it appears in the native doxygen file (?).

My intention is to specify the settings in the following fashion in the shell script, and have a suitable config file generated tailored to my needs.

...
echo "DOCSET_FEEDNAME = Some app" >> $TEMP_DIR/doxygen.config
echo "GENERATE_LATEX = NO" >> $TEMP_DIR/doxygen.config
echo "RECURSIVE = YES" >> $TEMP_DIR/doxygen.config
...

Thank you,
Sayan

© Stack Overflow or respective owner

Related posts about doxygen

Related posts about shell