]> Creatis software - creaToolsTools.git/blob - Install_ThirdParty/install_generate_thirdparty.bat_TEMPLATE
DFCH: Some bugs Solved!!
[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_all.bat
24
25 call install_thirdparty_all.bat  %thirdpartyGeneration% %buildType% >> install_generate_thirdparty.log 2>&1
26
27 echo Calling move_thirdparty_dlls.bat
28
29 call move_thirdparty_dlls.bat %thirdpartyGeneration% >> install_generate_thirdparty.log 2>&1
30
31 echo Calling move_thirdparty_libraries.bat
32
33 call move_thirdparty_libraries.bat %thirdpartyGeneration% >> install_generate_thirdparty.log 2>&1
34
35 echo Calling install_thirdparty_dlls_cmake.bat
36
37 call install_thirdparty_dlls_cmake.bat  %thirdpartyGeneration% >> install_generate_thirdparty.log 2>&1
38
39 echo Calling install_thirdparty_libraries_cmake.bat
40
41 call install_thirdparty_libraries_cmake.bat  %thirdpartyGeneration% >> install_generate_thirdparty.log 2>&1
42
43 cd ..
44
45 echo -----------------------------------
46 echo -------End of the Script-----------
47 echo -----------------------------------
48
49 pause
50 exit