2022-05-04 10:43:42 -04:00
|
|
|
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
|
|
|
|
|
|
using UnrealBuildTool;
|
|
|
|
|
|
|
|
|
|
public class RemoteControlLogic : ModuleRules
|
|
|
|
|
{
|
|
|
|
|
public RemoteControlLogic(ReadOnlyTargetRules Target) : base(Target)
|
|
|
|
|
{
|
|
|
|
|
PublicDependencyModuleNames.AddRange(
|
|
|
|
|
new string[] {
|
|
|
|
|
"Core",
|
|
|
|
|
"CoreUObject",
|
2023-06-08 12:17:02 -04:00
|
|
|
"StructUtils"
|
2022-05-04 10:43:42 -04:00
|
|
|
}
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
PrivateDependencyModuleNames.AddRange(
|
|
|
|
|
new string[] {
|
2023-06-08 12:17:02 -04:00
|
|
|
"AssetRegistry",
|
2022-05-04 10:43:42 -04:00
|
|
|
"Cbor",
|
|
|
|
|
"Engine",
|
2022-11-30 09:14:41 -05:00
|
|
|
"HTTP",
|
2022-05-04 10:43:42 -04:00
|
|
|
"RemoteControl",
|
|
|
|
|
"Serialization",
|
|
|
|
|
"StructUtils"
|
|
|
|
|
}
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
if (Target.bBuildEditor)
|
|
|
|
|
{
|
|
|
|
|
PrivateDependencyModuleNames.AddRange(
|
|
|
|
|
new string[] {
|
|
|
|
|
"UnrealEd",
|
|
|
|
|
}
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|