]> git.saurik.com Git - wxWidgets.git/blob - docs/doxygen/regen.bat
Fixed docs footer to bottom, and fixed up TOC on all main pages, and some overviews.
[wxWidgets.git] / docs / doxygen / regen.bat
1 @echo off
2 REM $Id$
3
4 REM This bash script regenerates the HTML doxygen version of the
5 REM wxWidgets manual and adjusts the doxygen log to make it more
6 REM readable.
7
8 mkdir out 2>&1 >NUL
9 mkdir out\html 2>&1 >NUL
10 mkdir out\html\generic 2>&1 >NUL
11 mkdir out\html\wxgtk 2>&1 >NUL
12 mkdir out\html\wxmsw 2>&1 >NUL
13 mkdir out\html\wxmac 2>&1 >NUL
14
15 REM These not automatically copied by Doxygen because they're not
16 REM used in doxygen documentation, only in our html footer and by our
17 REM custom aliases
18 copy images\powered-by-wxwidgets.png out\html 2>&1 >NUL
19 copy images\generic\*.png out\html\generic 2>&1 >NUL
20 copy images\wxgtk\*.png out\html\wxgtk 2>&1 >NUL
21 copy images\wxmsw\*.png out\html\wxmsw 2>&1 >NUL
22 copy images\wxmac\*.png out\html\wxmac 2>&1 >NUL
23 copy wxwidgets.js out\html 2>&1 >NUL
24
25 REM set cfgfile variable to the right doxyfile to use,
26 REM using MS broken batch scripting
27 setlocal enableextensions
28 set arg=%1
29 if "%arg%" EQU "" set cfgfile=Doxyfile_all
30 if "%arg%" NEQ "" set cfgfile=Doxyfile_%1
31
32 pushd ..\..
33 set WXWIDGETS=%CD%
34 popd
35
36 REM
37 REM NOW RUN DOXYGEN
38 REM
39 REM NB: we do this _after_ copying the required files to the output folders
40 REM otherwise when generating the CHM file with Doxygen, those files are
41 REM not included!
42 REM
43 set PATH=%PATH%;%HHC_PATH%
44 doxygen %cfgfile%