2019-12-27 09:26:59 -05:00
|
|
|
// Copyright Epic Games, Inc. All Rights Reserved.
|
2019-06-07 11:22:52 -04:00
|
|
|
|
|
|
|
|
using UnrealBuildTool;
|
|
|
|
|
|
|
|
|
|
public class WebRemoteControl : ModuleRules
|
|
|
|
|
{
|
|
|
|
|
public WebRemoteControl(ReadOnlyTargetRules Target) : base(Target)
|
|
|
|
|
{
|
2021-03-05 19:27:14 -04:00
|
|
|
PublicDependencyModuleNames.AddRange(
|
2019-06-07 11:22:52 -04:00
|
|
|
new string[] {
|
|
|
|
|
"Core",
|
|
|
|
|
"CoreUObject",
|
2021-04-29 19:32:06 -04:00
|
|
|
"HTTPServer"
|
2019-06-07 11:22:52 -04:00
|
|
|
}
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
PrivateDependencyModuleNames.AddRange(
|
|
|
|
|
new string[] {
|
2020-09-24 00:43:27 -04:00
|
|
|
"AssetRegistry",
|
2019-06-07 11:22:52 -04:00
|
|
|
"RemoteControl",
|
2021-08-03 11:56:47 -04:00
|
|
|
"RemoteControlCommon",
|
2019-06-07 11:22:52 -04:00
|
|
|
"Serialization",
|
2020-11-24 18:42:39 -04:00
|
|
|
"Sockets",
|
2020-09-24 00:43:27 -04:00
|
|
|
"WebSocketNetworking"
|
2019-06-07 11:22:52 -04:00
|
|
|
}
|
|
|
|
|
);
|
2020-09-24 00:43:27 -04:00
|
|
|
|
|
|
|
|
if (Target.Type == TargetType.Editor)
|
|
|
|
|
{
|
|
|
|
|
PrivateDependencyModuleNames.AddRange(
|
|
|
|
|
new string[] {
|
2021-08-03 11:56:47 -04:00
|
|
|
"DeveloperSettings",
|
2021-03-05 19:27:14 -04:00
|
|
|
"Engine",
|
2020-11-24 18:42:39 -04:00
|
|
|
"ImageWrapper",
|
2021-06-07 20:09:45 -04:00
|
|
|
"RemoteControlUI",
|
2020-09-24 00:43:27 -04:00
|
|
|
"Settings",
|
2020-11-24 18:42:39 -04:00
|
|
|
"Slate",
|
|
|
|
|
"SlateCore",
|
|
|
|
|
"UnrealEd",
|
2020-09-24 00:43:27 -04:00
|
|
|
}
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
}
|
2019-06-07 11:22:52 -04:00
|
|
|
}
|