Files
UnrealEngineUWP/Engine/Source/Editor/SkeletonEditor/SkeletonEditor.Build.cs
helge mathee 7544779d47 SkeletonEditor: Use new SAdvancedTransformInputBox
#rb thomas.sarkanen
#jira UE-134546
#preflight https://horde.devtools.epicgames.com/job/61a8bab1ca183f8de48aaf15

#ROBOMERGE-AUTHOR: helge.mathee
#ROBOMERGE-SOURCE: CL 18351461 in //UE5/Release-5.0/... via CL 18351477
#ROBOMERGE-BOT: STARSHIP (Release-Engine-Staging -> Release-Engine-Test) (v895-18170469)
#ROBOMERGE[STARSHIP]: UE5-Main

[CL 18351480 by helge mathee in ue5-release-engine-test branch]
2021-12-02 08:38:55 -05:00

57 lines
1.1 KiB
C#

// Copyright Epic Games, Inc. All Rights Reserved.
using UnrealBuildTool;
public class SkeletonEditor : ModuleRules
{
public SkeletonEditor(ReadOnlyTargetRules Target) : base(Target)
{
PrivateDependencyModuleNames.AddRange(
new string[] {
"Core",
"CoreUObject",
"Engine",
"ApplicationCore",
"InputCore",
"Slate",
"SlateCore",
"EditorStyle",
"EditorFramework",
"UnrealEd",
"Persona",
"AnimGraph",
"AnimGraphRuntime",
"ContentBrowser",
"AssetRegistry",
"BlueprintGraph",
"Kismet",
"PinnedCommandList",
"ToolMenus",
"EditorWidgets",
"ToolWidgets",
"AnimationCore",
"AnimationWidgets",
}
);
PublicIncludePathModuleNames.AddRange(
new string[] {
"Persona",
"AnimationWidgets",
}
);
PrivateIncludePathModuleNames.AddRange(
new string[] {
"PropertyEditor",
}
);
DynamicallyLoadedModuleNames.AddRange(
new string[] {
"PropertyEditor",
}
);
}
}