]> Creatis software - creaToolsTools.git/blob - Install_ThirdParty/install_generate_thirdparty.bat_TEMPLATE
DFCH: Important changes in the 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 cd scripts
22
23 echo Calling install_thirdparty.bat
24
25 start /wait install_thirdparty.bat %thirdpartyGeneration% %buildType%
26
27 echo Calling generateThirdPartydllsExe.bat
28
29 start /wait generateThirdPartydllsExe.bat %thirdpartyGeneration%
30
31 echo Calling generateThirdPartyLibExe.bat
32
33 start /wait generateThirdPartyLibExe.bat %thirdpartyGeneration%
34
35 cd..
36
37 echo -----------------------------------
38 echo -------End of the Script-----------
39 echo -----------------------------------
40
41 pause
42
43 exit