RunUAT.bat: Always build AutomationTool with msbuild

Avoid problem where insufficient dependency checking would fail to rebuild AutomationTool (and dependent projects) when needed.

#jira none
#rb ryan.durand

[CL 17505693 by jonathan adamczewski in ue5-main branch]
This commit is contained in:
jonathan adamczewski
2021-09-14 12:20:48 -04:00
parent 4eafd7005b
commit d0b43049bd
+8
View File
@@ -52,6 +52,14 @@ rem ## Verify that dotnet is present
call "%SCRIPT_DIR%GetDotnetPath.bat"
if errorlevel 1 goto Error_NoDotnetSDK
rem Checking for out-of-date files won't find source files in places like Engine/Platform, resulting in occasionally
rem out of date builds. Until a better solution is found, always try to build AutomationTool.
set FORCECOMPILE_UAT=FORCE
call "%SCRIPT_DIR%BuildUAT.bat" %FORCECOMPILE_UAT%
if errorlevel 1 goto Error_UATCompileFailed