@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 set scripts=%cd%\scripts cd %scripts% echo Calling install_thirdparty.bat start /wait install_thirdparty.bat %thirdpartyGeneration% %buildType% echo Calling generateThirdPartydllsExe.bat cd %scripts% start /wait generateThirdPartydllsExe.bat %thirdpartyGeneration% %buildType% echo Calling generateThirdPartyLibExe.bat cd %scripts% start /wait generateThirdPartyLibExe.bat %thirdpartyGeneration% %buildType% cd.. echo ----------------------------------- echo -------End of the Script----------- echo ----------------------------------- echo ending time time /t date /T pause exit