You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
#rb simon.therriault geoffrey.douglas #preflight 64062b073206d45d20211961 #jira UE-175343 #lockdown alejandro.arango [CL 24533936 by jeremie roy in ue5-main branch]
49 lines
897 B
C#
49 lines
897 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",
|
|
"RemoteControlLogic",
|
|
"Sockets",
|
|
"WebSocketNetworking"
|
|
}
|
|
);
|
|
|
|
if (Target.Type == TargetType.Editor)
|
|
{
|
|
PrivateDependencyModuleNames.AddRange(
|
|
new string[] {
|
|
"DeveloperSettings",
|
|
"Engine",
|
|
"ImageWrapper",
|
|
"RemoteControlUI",
|
|
"Settings",
|
|
"SharedSettingsWidgets",
|
|
"Slate",
|
|
"SlateCore",
|
|
"SourceControl",
|
|
"UnrealEd",
|
|
}
|
|
);
|
|
}
|
|
}
|
|
}
|