compile_doxygen.bat 572 B

1234567891011121314151617181920212223242526
  1. @echo off
  2. rem
  3. rem This batch file generates DoxyGen info and compiles the separate
  4. rem HTML files into CHMs.
  5. rem
  6. rem Assumptions:
  7. rem ------------
  8. rem - doxygen installed and in path
  9. rem - hhc (HTML Help Compiler) installed and in path
  10. rem - dot (Graphviz package) installed and in path
  11. rem
  12. rem Both generated CHM files are then copied over to the
  13. rem common DOC area.
  14. doxygen debug.dox
  15. doxygen debug_priv.dox
  16. cd doc\html
  17. hhc index.hhp
  18. copy index.chm ..\..\debug.chm
  19. cd ..\html_priv
  20. hhc index.hhp
  21. copy index.chm ..\..\debug_priv.chm
  22. cd ..\..
  23. copy debug.chm ..\..\docs