@@ -11,6 +11,8 @@ REM Output folder where the builds would be stored
1111set OutputPath = %3
1212REM folder containing AirSim repo
1313set AirSimPath = %4
14+ REM path for UE toolset
15+ set ToolPath = %5
1416
1517REM set defaults if ars are not supplied
1618if " %UnrealProjsPath% " == " " set " UnrealProjsPath = D:\vso\msresearch\Theseus"
@@ -29,7 +31,6 @@ if "%RebuildAirSim%"=="true" (
2931
3032IF NOT EXIST " %OutputPath% " mkdir " %OutputPath% "
3133
32- REM call:doOneProject "Warehouse"
3334call :doOneProject " TalkingHeads"
3435call :doOneProject " ZhangJiaJie"
3536call :doOneProject " AirSimEnvNH"
@@ -40,10 +41,13 @@ call:doOneProject "Forest"
4041call :doOneProject " Coastline"
4142call :doOneProject " TrapCamera"
4243call :doOneProject " CityEnviron"
44+ call :doOneProject " Warehouse"
45+ call :doOneProject " Plains" " " 4.19
4346
4447goto :done
4548
4649:doOneProject
50+ REM args: OutputPath ToolPath UEVer
4751if " %~2 " == " " (
4852 cd /D " %UnrealProjsPath% \%~1 "
4953) else (
@@ -56,7 +60,7 @@ robocopy "%AirSimPath%\Unreal\Environments\Blocks" . *.bat /njh /njs /ndl /np
5660CALL update_from_git.bat " %AirSimPath% "
5761if ERRORLEVEL 1 goto :failed
5862
59- CALL package.bat " %OutputPath% "
63+ CALL package.bat " %OutputPath% " " %ToolPath% " %~3
6064if ERRORLEVEL 1 goto :failed
6165
6266goto :done
0 commit comments