]> Creatis software - creaToolsTools.git/blobdiff - Install_ThirdParty/install_generate_thirdparty.bat_TEMPLATE
DFCH: Some bugs Solved!!
[creaToolsTools.git] / Install_ThirdParty / install_generate_thirdparty.bat_TEMPLATE
index 60e8098bd9cb9e9de04a041dc17152695cfe0f5c..01faf825bec050f36074c6d3137317b5cac12671 100644 (file)
@@ -1,15 +1,50 @@
+@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 -----------------------------------
+
 cd scripts
+
+echo Calling install_thirdparty_all.bat
+
 call install_thirdparty_all.bat  %thirdpartyGeneration% %buildType% >> install_generate_thirdparty.log 2>&1
 
+echo Calling move_thirdparty_dlls.bat
+
 call move_thirdparty_dlls.bat %thirdpartyGeneration% >> install_generate_thirdparty.log 2>&1
 
+echo Calling move_thirdparty_libraries.bat
+
 call move_thirdparty_libraries.bat %thirdpartyGeneration% >> install_generate_thirdparty.log 2>&1
 
+echo Calling install_thirdparty_dlls_cmake.bat
+
 call install_thirdparty_dlls_cmake.bat  %thirdpartyGeneration% >> install_generate_thirdparty.log 2>&1
 
+echo Calling install_thirdparty_libraries_cmake.bat
+
 call install_thirdparty_libraries_cmake.bat  %thirdpartyGeneration% >> install_generate_thirdparty.log 2>&1
 
-cd ..
\ No newline at end of file
+cd ..
+
+echo -----------------------------------
+echo -------End of the Script-----------
+echo -----------------------------------
+
+pause
+exit
\ No newline at end of file