You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
#jira UE-157870 #preflight 62bd3d871c0b75879702b3f0 [CL 20894351 by Paul Vincent in ue5-main branch]
29 lines
586 B
C#
29 lines
586 B
C#
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
using UnrealBuildTool;
|
|
using System.IO;
|
|
|
|
|
|
public class DisplayClusterRemoteControlInterceptor : ModuleRules
|
|
{
|
|
public DisplayClusterRemoteControlInterceptor(ReadOnlyTargetRules ROTargetRules) : base(ROTargetRules)
|
|
{
|
|
ShortName = "RCInterceptor";
|
|
|
|
PrivateDependencyModuleNames.AddRange(
|
|
new string[] {
|
|
"Core",
|
|
"CoreUObject",
|
|
"DisplayCluster",
|
|
"Engine",
|
|
"RemoteControlInterception",
|
|
"Serialization",
|
|
});
|
|
|
|
if (Target.bBuildEditor == true)
|
|
{
|
|
PrivateDependencyModuleNames.Add("UnrealEd");
|
|
}
|
|
}
|
|
}
|