Files
Joe Kirchoff 335fe90d87 Update Remote Compute to use new compact binary api
#preflight 61411c7cb5a4fa0001184cbe
#rb Zousar.Shaker
#rnx

[CL 17552582 by Joe Kirchoff in ue5-main branch]
2021-09-17 11:17:27 -04:00

22 lines
378 B
C#

// Copyright Epic Games, Inc. All Rights Reserved.
using UnrealBuildTool;
using System.IO;
namespace UnrealBuildTool.Rules
{
public class RemoteExecution : ModuleRules
{
public RemoteExecution(ReadOnlyTargetRules Target) : base(Target)
{
PrivateDependencyModuleNames.AddRange(
new string[] {
"Core",
"Settings",
"CoreUObject",
}
);
}
}
}