Files
UnrealEngineUWP/Engine/Plugins/VirtualProduction/RemoteControl/Source/WebRemoteControl/WebRemoteControl.Build.cs
Marc Audy 8f73cd7fa9 Merge UE5/Release-Engine-Staging @ 15630841 to UE5/Main
This represents UE4/Main @ 15601601

[CL 15631170 by Marc Audy in ue5-main branch]
2021-03-05 19:27:14 -04:00

42 lines
725 B
C#

// Copyright Epic Games, Inc. All Rights Reserved.
using UnrealBuildTool;
public class WebRemoteControl : ModuleRules
{
public WebRemoteControl(ReadOnlyTargetRules Target) : base(Target)
{
PublicDependencyModuleNames.AddRange(
new string[] {
"Core",
"CoreUObject",
}
);
PrivateDependencyModuleNames.AddRange(
new string[] {
"AssetRegistry",
"HTTPServer",
"RemoteControl",
"Serialization",
"Sockets",
"WebSocketNetworking"
}
);
if (Target.Type == TargetType.Editor)
{
PrivateDependencyModuleNames.AddRange(
new string[] {
"Engine",
"ImageWrapper",
"Settings",
"Slate",
"SlateCore",
"UnrealEd",
}
);
}
}
}