2019-12-27 09:26:59 -05:00
|
|
|
// Copyright Epic Games, Inc. All Rights Reserved.
|
2019-07-18 12:00:53 -04:00
|
|
|
|
|
|
|
|
using UnrealBuildTool;
|
|
|
|
|
using System.IO;
|
|
|
|
|
|
2021-04-29 19:32:06 -04:00
|
|
|
|
|
|
|
|
public class DisplayClusterRemoteControlInterceptor : ModuleRules
|
2019-07-18 12:00:53 -04:00
|
|
|
{
|
2021-04-29 19:32:06 -04:00
|
|
|
public DisplayClusterRemoteControlInterceptor(ReadOnlyTargetRules ROTargetRules) : base(ROTargetRules)
|
2019-07-18 12:00:53 -04:00
|
|
|
{
|
2022-06-30 09:48:38 -04:00
|
|
|
ShortName = "RCInterceptor";
|
|
|
|
|
|
2021-04-29 19:32:06 -04:00
|
|
|
PrivateDependencyModuleNames.AddRange(
|
2020-10-09 22:42:26 -04:00
|
|
|
new string[] {
|
2019-07-18 12:00:53 -04:00
|
|
|
"Core",
|
|
|
|
|
"CoreUObject",
|
2020-10-09 22:42:26 -04:00
|
|
|
"DisplayCluster",
|
2021-04-29 19:32:06 -04:00
|
|
|
"Engine",
|
|
|
|
|
"RemoteControlInterception",
|
|
|
|
|
"Serialization",
|
2020-10-09 22:42:26 -04:00
|
|
|
});
|
2019-07-18 12:00:53 -04:00
|
|
|
|
|
|
|
|
if (Target.bBuildEditor == true)
|
|
|
|
|
{
|
|
|
|
|
PrivateDependencyModuleNames.Add("UnrealEd");
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|