Files
UnrealEngineUWP/Engine/Plugins/VirtualProduction/RemoteControl/Source/WebRemoteControl/WebRemoteControl.Build.cs
Elliot Colp 1e332b2251 Expose WebRemoteControl websocket API to other modules
#rb: Jeremie.Roy
#preflight 621e64e8b20446f11c667187

[CL 19202712 by Elliot Colp in ue5-main branch]
2022-03-01 13:43:14 -05:00

46 lines
819 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",
"HTTPServer",
"Serialization"
}
);
PrivateDependencyModuleNames.AddRange(
new string[] {
"AssetRegistry",
"Networking",
"RemoteControl",
"RemoteControlCommon",
"Sockets",
"WebSocketNetworking"
}
);
if (Target.Type == TargetType.Editor)
{
PrivateDependencyModuleNames.AddRange(
new string[] {
"DeveloperSettings",
"Engine",
"ImageWrapper",
"RemoteControlUI",
"Settings",
"Slate",
"SlateCore",
"UnrealEd",
}
);
}
}
}