root/trunk/gen_msw.bat

Revision 514, 1.8 kB (checked in by uncle_fungus, 3 years ago)

Fixed Windows build system to use new manual

Line 
1 @echo off
2 if not exist .\Release (
3 mkdir .\Release
4 )
5 call po_to_lang.bat
6 copy /y .\wxcurl\lib\libcurl.dll .\Release
7 if not exist .\Release\images (
8 mkdir .\Release\images
9 )
10 copy /y .\src\images\list_client_asynch.png .\Release\images
11 copy /y .\src\images\list_client_inaccessible.png .\Release\images
12 copy /y .\src\images\list_client_inactive.png .\Release\images
13 copy /y .\src\images\list_client_ok.png .\Release\images
14 copy /y .\src\images\list_client_stopped.png .\Release\images
15 copy /y .\src\images\list_client_paused.png .\Release\images
16 copy /y .\src\images\list_down_arrow.png .\Release\images
17 copy /y .\src\images\list_up_arrow.png .\Release\images
18 copy /y .\src\images\main_icon.png .\Release\images
19 copy /y .\src\images\dialog_icon.png .\Release\images
20
21 if not exist .\Release\docs (
22 mkdir .\Release\docs
23 )
24 copy /y .\AUTHORS .\Release\docs\AUTHORS.txt
25 copy /y .\ChangeLog .\Release\docs\ChangeLog.txt
26 copy /y .\COPYING .\Release\docs\COPYING.txt
27 copy /y .\doc\help\User_Guide.pdf .\Release\docs\help.pdf
28 copy /y .\NEWS .\Release\docs\NEWS.txt
29 copy /y .\README .\Release\docs\README.txt
30 copy /y .\TEMPLATE_SYNTAX .\Release\docs\TEMPLATE_SYNTAX.txt
31
32 if not exist .\Release\templates (
33 mkdir .\Release\templates
34 )
35 copy /y .\templates\fancy_template.htm .\Release\templates
36 copy /y .\templates\simple_template.htm .\Release\templates
37 copy /y .\templates\simple_template.txt .\Release\templates
38
39 copy /y .\FahMon.nsi .\Release\
40 if exist .\Release\*.obj (
41 del /F /Q .\Release\*.obj
42 )
43 if exist .\Release\*.htm (
44 del /F /Q .\Release\*.htm
45 )
46 if exist .\Release\*.manifest (
47 del /F /Q .\Release\*.manifest
48 )
49 if exist .\Release\*.res (
50 del /F /Q .\Release\*.res
51 )
52 if exist .\Release\*.dep (
53 del /F /Q .\Release\*.dep
54 )
55 if exist .\Release\*.log (
56 del /F /Q .\Release\*.log
57 )
58 if exist .\Release\*.idb (
59 del /F /Q .\Release\*.idb
60 )
Note: See TracBrowser for help on using the browser.