]> Creatis software - creaToolsTools.git/blob - Install_ThirdParty/install_thirdparty.bat_TEMPLATE
5e6d1d0227411b993324433d7ac79f302f7c80c9
[creaToolsTools.git] / Install_ThirdParty / install_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
11 echo thirdpartyGeneration=%thirdpartyGeneration%
12 echo buildType=%buildType%
13
14 echo -----------------------------------
15 echo ---End Setting Global Variables----
16 echo -----------------------------------
17
18 echo -----------------------------------
19 echo -------Calling Scripts-------------
20 echo -----------------------------------
21
22 cd scripts
23
24 echo Calling install_thirdparty_all.bat
25
26 call install_thirdparty_all.bat  %thirdpartyGeneration% %buildType% >> install.log 2>&1
27
28 cd ..
29
30 echo -----------------------------------
31 echo -------End of the Script-----------
32 echo -----------------------------------
33
34 pause
35
36 exit