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