Files
Elliot Colp 5b7947ba0f [RemoteControl] Fix HTTP query parameters not being parsed when sent via WebSocket http route
#jira UE-188884
#rb Jeremie.Roy

[CL 26060020 by Elliot Colp in ue5-main branch]
2023-06-16 13:29:14 -04:00

50 lines
909 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",
"HTTP",
"Networking",
"RemoteControl",
"RemoteControlCommon",
"RemoteControlLogic",
"Sockets",
"WebSocketNetworking"
}
);
if (Target.Type == TargetType.Editor)
{
PrivateDependencyModuleNames.AddRange(
new string[] {
"DeveloperSettings",
"Engine",
"ImageWrapper",
"RemoteControlUI",
"Settings",
"SharedSettingsWidgets",
"Slate",
"SlateCore",
"SourceControl",
"UnrealEd",
}
);
}
}
}