Files
UnrealEngine/Engine/Source/Editor/AnimationEditor/AnimationEditor.Build.cs
2025-05-18 13:04:45 +08:00

49 lines
1001 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",
"EditorFramework",
"UnrealEd",
"Persona",
"SkeletonEditor",
"Kismet",
"AnimGraph",
"ToolMenus"
}
);
PrivateIncludePathModuleNames.AddRange(
new string[] {
"PropertyEditor",
"SequenceRecorder",
}
);
PublicIncludePathModuleNames.AddRange(
new string[] {
"Persona",
}
);
DynamicallyLoadedModuleNames.AddRange(
new string[] {
"PropertyEditor",
"SequenceRecorder",
}
);
}
}