You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
#preflight 61411c7cb5a4fa0001184cbe #rb Zousar.Shaker #rnx [CL 17552582 by Joe Kirchoff in ue5-main branch]
22 lines
378 B
C#
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",
|
|
}
|
|
);
|
|
}
|
|
}
|
|
}
|