@echo off echo ----------------------------------- echo ---Setting Environment Variables--- echo ----------------------------------- set thirdpartyGeneration= set buildType= 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 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.. echo ----------------------------------- echo -------End of the Script----------- echo ----------------------------------- echo ending time time /t date /T pause exit