Skip to content

Instantly share code, notes, and snippets.

@liamkf
Created March 20, 2017 17:39
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save liamkf/9e8a660be117c85428054fe76dfd5eff to your computer and use it in GitHub Desktop.
Save liamkf/9e8a660be117c85428054fe76dfd5eff to your computer and use it in GitHub Desktop.
Modifications to ActionGraph.cs to allow FASTBuild.cs to function.
[...]
/// <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