![]() TGE Version 1.5.2 | |
| |
How to Regenerate the Torque Engine ReferenceIntroductionOne of the beauties of using Doxygen to document Torque is that it's very easy to update the documentation to reflect changes in the engine. If something is added, removed, or changed, all you need is the Torque source code, a few freely available software tools, and you can make a new copy of the docs.
What You'll NeedYou will need the following tools to regenerate the documentation in HTML:
How To RegenerateRegenerating the docs is a matter of running doxygen at the root of your Torque checkout, and passing it the path to your doxygen configuration file. For example, I have a file called doc.bat in the root of my Torque checkout, which contains:
"c:\Program Files\doxygen\bin\doxygen.exe" doc\doxygen\html\doxygen.html.cfg
And that's all you need to do to regenerate - though you'll want to tweak your doxygen.html.cfg file to reflect your individual setup. The configuration lines you care about are:
More in-depth information is available at http://www.doxygen.org/, on the manual pages. |