]>
git.saurik.com Git - wxWidgets.git/blob - docs/doxygen/regen.bat
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
9 mkdir out\html
2>&1 >NUL
10 mkdir out\html\wxgtk
2>&1 >NUL
11 mkdir out\html\wxmsw
2>&1 >NUL
12 mkdir out\html\wxmac
2>&1 >NUL
14 REM this image is not automatically copied by Doxygen because it's not
15 REM used in doxygen documentation but only in our html footer...
16 copy images\powered
-by
-wxwidgets.png out\html
2>&1 >NUL
17 copy images\
*logo.png out\html
2>&1 >NUL
18 copy images\wxgtk\
*png out\html\wxgtk
2>&1 >NUL
19 copy images\wxmsw\
*png out\html\wxmsw
2>&1 >NUL
20 copy images\wxmac\
*png out\html\wxmac
2>&1 >NUL
22 REM this CSS is automatically copied by Doxygen because it's
23 REM included by our custom html header...
24 copy wxwidgets.css out\html
2>&1 >NUL
26 REM set cfgfile variable to the right doxyfile to use,
27 REM using MS broken batch scripting
28 setlocal enableextensions
30 if "%arg%" EQU
"" set cfgfile
=Doxyfile_all
31 if "%arg%" NEQ "" set cfgfile
=Doxyfile_
%1
36 REM NB: we do this _after_ copying the required files to the output folders
37 REM otherwise when generating the CHM file with Doxygen, those files are
40 set PATH=%PATH%;%HHC_PATH%