Created
March 20, 2017 17:39
-
-
Save liamkf/9e8a660be117c85428054fe76dfd5eff to your computer and use it in GitHub Desktop.
Modifications to ActionGraph.cs to allow FASTBuild.cs to function.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[...] | |
/// <summary> | |
/// Executes a list of actions. | |
/// </summary> | |
public static bool ExecuteActions(List<Action> ActionsToExecute, out string ExecutorName, string TargetInfoForTelemetry, bool bIsHotReload = false) | |
{ | |
bool Result = true; | |
ExecutorName = ""; | |
if (ActionsToExecute.Count > 0) | |
{ | |
DateTime StartTime = DateTime.UtcNow; | |
ActionExecutor Executor; | |
if(FASTBuild.IsAvailable()) | |
{ | |
Executor = new FASTBuild(); | |
} | |
else if ((XGE.IsAvailable() && BuildConfiguration.bAllowXGE) || BuildConfiguration.bXGEExport) | |
{ | |
Executor = new XGE(); | |
} | |
[...] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment