Files
UnrealEngineUWP/Engine/Source/Editor/AnimationEditor/AnimationEditor.Build.cs
Jurre deBaare e46208d52b Tool menu API extension for Persona editor umbrella - exposing partial PersonalToolkit API to scripting through context uobject
#jira UEA-674
#rb Thomas.Sarkanen

[CL 14492424 by Jurre deBaare in ue5-main branch]
2020-10-14 12:00:06 -04:00

43 lines
936 B
C#

// Copyright Epic Games, Inc. All Rights Reserved.
using UnrealBuildTool;
public class AnimationEditor : ModuleRules
{
public AnimationEditor(ReadOnlyTargetRules Target) : base(Target)
{
PrivateDependencyModuleNames.AddRange(
new string[] {
"Core",
"CoreUObject",
"Engine",
"InputCore",
"Slate",
"SlateCore",
"EditorStyle",
"EditorFramework",
"UnrealEd",
"Persona",
"SkeletonEditor",
"Kismet",
"AnimGraph",
"ToolMenus"
}
);
PrivateIncludePathModuleNames.AddRange(
new string[] {
"PropertyEditor",
"SequenceRecorder",
}
);
DynamicallyLoadedModuleNames.AddRange(
new string[] {
"PropertyEditor",
"SequenceRecorder",
}
);
}
}