-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathBuildRelease.bat
More file actions
64 lines (24 loc) · 982 Bytes
/
BuildRelease.bat
File metadata and controls
64 lines (24 loc) · 982 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
REM - Script to prepare for Release
SET VERSION=9.0.1.1
REM - Step 1. Update the documentation
cd %ARPDIR%\BridgeLink
call PublishDocumentation.bat
REM - Step 2. Update the binary files
cd %ARPDIR%\BridgeLink
call UpdateBinFiles.bat
REM - Step 3. Copy binaries to the release file tree
cd \ARP_RELEASE
mkdir Barlist\%VERSION%\bin
xcopy /E /I /Y %ARPDIR%\Barlist\bin\* Barlist\%VERSION%\bin
mkdir BEToolbox\%VERSION%\bin
xcopy /E /I /Y %ARPDIR%\BEToolbox\bin\* BEToolbox\%VERSION%\bin
mkdir BridgeLink\%VERSION%\bin
xcopy /E /I /Y %ARPDIR%\BridgeLink\bin\* BridgeLink\%VERSION%\bin
mkdir PGSuper\%VERSION%\bin
xcopy /E /I /Y %ARPDIR%\PGSuper\bin\* PGSuper\%VERSION%\bin
xcopy /E /I /Y %ARPDIR%\PGSuperIfcExtensions\bin\* PGSuper\%VERSION%\bin
mkdir XBeamRate\%VERSION%\bin
xcopy /E /I /Y %ARPDIR%\XBeamRate\bin\* XBeamRate\%VERSION%\bin
mkdir WBFL\%VERSION%\bin
xcopy /E /I /Y %ARPDIR%\WBFL\bin\* WBFL\%VERSION%\bin
cd %ARPDIR%\BridgeLink