]> Creatis software - creaToolsTools.git/blob - Install_ThirdParty/install_generate_thirdparty.bat_TEMPLATE
DFCH: Updating script
[creaToolsTools.git] / Install_ThirdParty / install_generate_thirdparty.bat_TEMPLATE
1 @echo off
2
3 echo -----------------------------------
4 echo ---Setting Environment Variables---
5 echo -----------------------------------
6
7 set thirdpartyGeneration=<directory where you want to generate>
8 set buildType=<debug|release|RelWithDebInfo>
9
10 echo thirdpartyGeneration=%thirdpartyGeneration%
11 echo buildType=%buildType%
12
13 echo -----------------------------------
14 echo ---End Setting Global Variables----
15 echo -----------------------------------
16
17 echo -----------------------------------
18 echo -------Calling Scripts-------------
19 echo -----------------------------------
20
21 echo starting time
22 time /t
23 date /T
24
25 set scripts=%cd%\scripts
26
27 cd %scripts%
28
29 echo Calling download_ThirdPartySW.bat
30
31 call download_ThirdPartySW.bat %thirdpartyGeneration% %buildType% >> downloadThirdParty.log 2>&1
32
33 cd %scripts%
34
35 echo Calling install_thirdparty.bat
36
37 start /wait install_thirdparty.bat %thirdpartyGeneration% %buildType%
38
39 echo Calling generateThirdPartydllsExe.bat
40
41 cd %scripts%
42
43 start /wait generateThirdPartydllsExe.bat %thirdpartyGeneration% %buildType%
44
45 echo Calling generateThirdPartyLibExe.bat
46
47 cd %scripts%
48
49 start /wait generateThirdPartyLibExe.bat %thirdpartyGeneration% %buildType%
50
51 cd..
52
53 echo -----------------------------------
54 echo -------End of the Script-----------
55 echo -----------------------------------
56
57 echo ending time
58 time /t
59 date /T
60
61 pause
62
63 exit