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