2021-03-18 15:20:03 -04:00
|
|
|
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
|
|
|
|
|
|
using System.IO;
|
|
|
|
|
using UnrealBuildTool;
|
|
|
|
|
|
|
|
|
|
public class RemoteControlProtocolWidgets : ModuleRules
|
|
|
|
|
{
|
|
|
|
|
public RemoteControlProtocolWidgets(ReadOnlyTargetRules Target) : base(Target)
|
|
|
|
|
{
|
|
|
|
|
PrivateDependencyModuleNames.AddRange(new string[] {
|
|
|
|
|
"Core",
|
|
|
|
|
"CoreUObject",
|
2021-04-29 19:32:06 -04:00
|
|
|
"EditorStyle",
|
|
|
|
|
"EditorSubsystem",
|
|
|
|
|
"EditorWidgets",
|
|
|
|
|
"Engine",
|
|
|
|
|
"GraphEditor",
|
|
|
|
|
"InputCore",
|
|
|
|
|
"Projects",
|
|
|
|
|
"PropertyEditor",
|
|
|
|
|
"RemoteControl",
|
|
|
|
|
"RemoteControlCommon",
|
|
|
|
|
"RemoteControlProtocol",
|
2021-03-18 15:20:03 -04:00
|
|
|
"Slate",
|
|
|
|
|
"SlateCore",
|
2024-08-08 13:51:50 -04:00
|
|
|
"StructUtilsEditor",
|
|
|
|
|
"UnrealEd",
|
2021-03-18 15:20:03 -04:00
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
}
|