X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/cba817acd4219d3875e114eea2974cd09a68f869..394b2900ffb066b20f3a06482b470521e3b876fe:/docs/doxygen/regen.bat?ds=sidebyside diff --git a/docs/doxygen/regen.bat b/docs/doxygen/regen.bat old mode 100755 new mode 100644 index 179e831ee0..d52d7e7631 --- a/docs/doxygen/regen.bat +++ b/docs/doxygen/regen.bat @@ -1,15 +1,41 @@ -REM $Id$ - -REM This bash script regenerates the HTML doxygen version of the -REM wxWidgets manual and adjusts the doxygen log to make it more -REM readable. - -doxygen - -REM this image is not automatically copied by Doxygen because it's not -REM used in doxygen documentation but only in our html footer... -copy images/powered-by-wxwidgets.png out/html - -REM this CSS is automatically copied by Doxygen because it's -REM included by our custom html header... -copy wxwidgets.css out/html +@echo off +REM $Id$ + +REM This bash script regenerates the HTML doxygen version of the +REM wxWidgets manual and adjusts the doxygen log to make it more +REM readable. + +mkdir out 2>&1 >NUL +mkdir out\html 2>&1 >NUL +mkdir out\html\wxgtk 2>&1 >NUL +mkdir out\html\wxmsw 2>&1 >NUL +mkdir out\html\wxmac 2>&1 >NUL + +REM this image is not automatically copied by Doxygen because it's not +REM used in doxygen documentation but only in our html footer... +copy images\powered-by-wxwidgets.png out\html 2>&1 >NUL +copy images\*logo.png out\html 2>&1 >NUL +copy images\wxgtk\*png out\html\wxgtk 2>&1 >NUL +copy images\wxmsw\*png out\html\wxmsw 2>&1 >NUL +copy images\wxmac\*png out\html\wxmac 2>&1 >NUL + +REM this CSS is automatically copied by Doxygen because it's +REM included by our custom html header... +copy wxwidgets.css out\html 2>&1 >NUL + +REM set cfgfile variable to the right doxyfile to use, +REM using MS broken batch scripting +setlocal enableextensions +set arg=%1 +if "%arg%" EQU "" set cfgfile=Doxyfile_all +if "%arg%" NEQ "" set cfgfile=Doxyfile_%1 + +REM +REM NOW RUN DOXYGEN +REM +REM NB: we do this _after_ copying the required files to the output folders +REM otherwise when generating the CHM file with Doxygen, those files are +REM not included! +REM +set PATH=%PATH%;%HHC_PATH% +doxygen %cfgfile%