tags:

views:

82

answers:

0

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