]>
Commit | Line | Data |
---|---|---|
da17b714 FM |
1 | REM $Id$\r |
2 | \r | |
3 | REM This bash script regenerates the HTML doxygen version of the\r | |
4 | REM wxWidgets manual and adjusts the doxygen log to make it more\r | |
5 | REM readable.\r | |
6 | \r | |
85e43f4e FM |
7 | mkdir out\r |
8 | mkdir out\html\r | |
7a118965 FM |
9 | mkdir out\html\wxgtk\r |
10 | mkdir out\html\wxmsw\r | |
11 | mkdir out\html\wxmac\r | |
da17b714 FM |
12 | \r |
13 | REM this image is not automatically copied by Doxygen because it's not\r | |
14 | REM used in doxygen documentation but only in our html footer...\r | |
15 | copy images\powered-by-wxwidgets.png out\html\r | |
9c981bfb | 16 | copy images\*logo.png out\html\r |
7a118965 FM |
17 | copy images\wxgtk\*png out\html\wxgtk\r |
18 | copy images\wxmsw\*png out\html\wxmsw\r | |
19 | copy images\wxmac\*png out\html\wxmac\r | |
da17b714 FM |
20 | \r |
21 | REM this CSS is automatically copied by Doxygen because it's\r | |
22 | REM included by our custom html header...\r | |
23 | copy wxwidgets.css out\html\r | |
85e43f4e FM |
24 | \r |
25 | REM\r | |
26 | REM NOW RUN DOXYGEN\r | |
27 | REM\r | |
28 | REM NB: we do this _after_ copying the required files to the output folders\r | |
29 | REM otherwise when generating the CHM file with Doxygen, those files are\r | |
30 | REM not included!\r | |
31 | REM\r | |
32 | doxygen Doxyfile.all\r |