]> Creatis software - creaToolsTools.git/blobdiff - Install_ThirdParty/install_generate_thirdparty.bat_TEMPLATE
ThirdPartyLibraries script updates
[creaToolsTools.git] / Install_ThirdParty / install_generate_thirdparty.bat_TEMPLATE
index 60e8098bd9cb9e9de04a041dc17152695cfe0f5c..6863283f04b0521d5c75e5054671409dfccbd2c2 100644 (file)
@@ -1,15 +1,55 @@
+@echo off
+
+echo -----------------------------------
+echo ---Setting Environment Variables---
+echo -----------------------------------
+
 set thirdpartyGeneration=<directory where you want to generate>
 set buildType=<debug|release|RelWithDebInfo>
 
+echo thirdpartyGeneration=%thirdpartyGeneration%
+echo buildType=%buildType%
+
+echo -----------------------------------
+echo ---End Setting Global Variables----
+echo -----------------------------------
+
+echo -----------------------------------
+echo -------Calling Scripts-------------
+echo -----------------------------------
+
+echo starting time
+time /t
+date /T
+
 cd scripts
-call install_thirdparty_all.bat  %thirdpartyGeneration% %buildType% >> install_generate_thirdparty.log 2>&1
 
-call move_thirdparty_dlls.bat %thirdpartyGeneration% >> install_generate_thirdparty.log 2>&1
+echo Calling download_ThirdPartySW.bat
+
+call download_ThirdPartySW.bat %thirdpartyGeneration% %buildType% >> downloadTP.log 2>&1
+
+echo Calling install_thirdparty.bat
+
+start /wait install_thirdparty.bat %thirdpartyGeneration% %buildType%
+
+echo Calling generateThirdPartydllsExe.bat
+
+start /wait generateThirdPartydllsExe.bat %thirdpartyGeneration% %buildType%
+
+echo Calling generateThirdPartyLibExe.bat
+
+start /wait generateThirdPartyLibExe.bat %thirdpartyGeneration% %buildType%
+
+cd..
 
-call move_thirdparty_libraries.bat %thirdpartyGeneration% >> install_generate_thirdparty.log 2>&1
+echo -----------------------------------
+echo -------End of the Script-----------
+echo -----------------------------------
 
-call install_thirdparty_dlls_cmake.bat  %thirdpartyGeneration% >> install_generate_thirdparty.log 2>&1
+echo ending time
+time /t
+date /T
 
-call install_thirdparty_libraries_cmake.bat  %thirdpartyGeneration% >> install_generate_thirdparty.log 2>&1
+pause
 
-cd ..
\ No newline at end of file
+exit
\ No newline at end of file