@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 ----------------------------------- cd scripts echo Calling install_thirdparty.bat start /wait install_thirdparty.bat %thirdpartyGeneration% %buildType% echo Calling generateThirdPartydllsExe.bat start /wait generateThirdPartydllsExe.bat %thirdpartyGeneration% echo Calling generateThirdPartyLibExe.bat start /wait generateThirdPartyLibExe.bat %thirdpartyGeneration% cd.. echo ----------------------------------- echo -------End of the Script----------- echo ----------------------------------- pause exit