]> Creatis software - creaToolsTools.git/blob - Install_ThirdParty/install_generate_thirdparty.bat_TEMPLATE
Updating scripts
[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 install_thirdparty.bat
30
31 start /wait install_thirdparty.bat %thirdpartyGeneration% %buildType%
32
33 echo Calling generateThirdPartydllsExe.bat
34
35 cd %scripts%
36
37 start /wait generateThirdPartydllsExe.bat %thirdpartyGeneration% %buildType%
38
39 echo Calling generateThirdPartyLibExe.bat
40
41 cd %scripts%
42
43 start /wait generateThirdPartyLibExe.bat %thirdpartyGeneration% %buildType%
44
45 cd..
46
47 echo -----------------------------------
48 echo -------End of the Script-----------
49 echo -----------------------------------
50
51 echo ending time
52 time /t
53 date /T
54
55 pause
56
57 exit