| 1 | if exist ..\include\wx\msw\setup.h ( |
| 2 | echo include\wx\msw\setup.h already exists |
| 3 | ) else ( |
| 4 | copy /y ..\include\wx\msw\setup0.h ..\include\wx\msw\setup.h |
| 5 | ) |
| 6 | |
| 7 | if exist ..\lib\cw7mswd ( |
| 8 | echo lib\cw7mswd already exists |
| 9 | ) else ( |
| 10 | mkdir ..\lib\cw7mswd |
| 11 | ) |
| 12 | |
| 13 | if exist ..\lib\cw7mswd\include ( |
| 14 | echo lib\cw7mswd\include already exists |
| 15 | ) else ( |
| 16 | mkdir ..\lib\cw7mswd\include |
| 17 | ) |
| 18 | |
| 19 | if exist ..\lib\cw7mswd\include\wx ( |
| 20 | echo lib\cw7mswd\include\wx already exists |
| 21 | ) else ( |
| 22 | mkdir ..\lib\cw7mswd\include\wx |
| 23 | ) |
| 24 | |
| 25 | if exist ..\lib\cw7mswd\include\wx\setup.h ( |
| 26 | echo lib\cw7mswd\include\wx\setup.h already exists |
| 27 | ) else ( |
| 28 | copy /y ..\include\wx\msw\setup.h ..\lib\cw7mswd\include\wx\setup.h |
| 29 | ) |
| 30 | |
| 31 | rem pause |
| 32 | |