| 1234567891011121314151617181920212223242526 |
- @echo off
- rem
- rem This batch file generates DoxyGen info and compiles the separate
- rem HTML files into CHMs.
- rem
- rem Assumptions:
- rem ------------
- rem - doxygen installed and in path
- rem - hhc (HTML Help Compiler) installed and in path
- rem - dot (Graphviz package) installed and in path
- rem
- rem Both generated CHM files are then copied over to the
- rem common DOC area.
- doxygen debug.dox
- doxygen debug_priv.dox
- cd doc\html
- hhc index.hhp
- copy index.chm ..\..\debug.chm
- cd ..\html_priv
- hhc index.hhp
- copy index.chm ..\..\debug_priv.chm
- cd ..\..
- copy debug.chm ..\..\docs
|