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",
|
2022-03-01 13:43:14 -05:00
|
|
|
"HTTPServer",
|
|
|
|
|
"Serialization"
|
2019-06-07 11:22:52 -04:00
|
|
|
}
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
PrivateDependencyModuleNames.AddRange(
|
|
|
|
|
new string[] {
|
2020-09-24 00:43:27 -04:00
|
|
|
"AssetRegistry",
|
2022-02-28 14:42:23 -05:00
|
|
|
"Networking",
|
2019-06-07 11:22:52 -04:00
|
|
|
"RemoteControl",
|
2021-08-04 17:46:20 -04:00
|
|
|
"RemoteControlCommon",
|
2022-10-03 22:03:22 -04:00
|
|
|
"RemoteControlLogic",
|
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-04 17:46:20 -04:00
|
|
|
"DeveloperSettings",
|
2021-03-05 19:27:14 -04:00
|
|
|
"Engine",
|
2020-11-24 18:42:39 -04:00
|
|
|
"ImageWrapper",
|
2021-06-10 13:13:24 -04:00
|
|
|
"RemoteControlUI",
|
2020-09-24 00:43:27 -04:00
|
|
|
"Settings",
|
2023-03-06 19:02:08 -05:00
|
|
|
"SharedSettingsWidgets",
|
2020-11-24 18:42:39 -04:00
|
|
|
"Slate",
|
|
|
|
|
"SlateCore",
|
2023-03-06 19:02:08 -05:00
|
|
|
"SourceControl",
|
2020-11-24 18:42:39 -04:00
|
|
|
"UnrealEd",
|
2020-09-24 00:43:27 -04:00
|
|
|
}
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
}
|
2019-06-07 11:22:52 -04:00
|
|
|
}
|