Files
UnrealEngineUWP/Engine/Source/Editor/AnimationBlueprintEditor/AnimationBlueprintEditor.Build.cs
kiaran ritchie 848eb88580 Removing dependency on private Persona module in AnimationBlueprintEditor module.
#rb Thomas.Sarkanen
#JIRA UE-194129

[CL 30584514 by kiaran ritchie in ue5-main branch]
2024-01-11 20:46:51 -05:00

62 lines
1.3 KiB
C#

// Copyright Epic Games, Inc. All Rights Reserved.
using UnrealBuildTool;
public class AnimationBlueprintEditor : ModuleRules
{
public AnimationBlueprintEditor(ReadOnlyTargetRules Target) : base(Target)
{
PrivateIncludePathModuleNames.AddRange(
new string[] {
"SkeletonEditor",
"MessageLog"
}
);
PrivateDependencyModuleNames.AddRange(
new string[] {
"AppFramework",
"Core",
"CoreUObject",
"Slate",
"SlateCore",
"EditorStyle",
"Engine",
"UnrealEd",
"GraphEditor",
"InputCore",
"KismetWidgets",
"AnimGraph",
"AnimGraphRuntime",
"PropertyEditor",
"EditorWidgets",
"BlueprintGraph",
"RHI",
"KismetCompiler",
"ToolMenus",
"AnimGraphRuntime",
}
);
DynamicallyLoadedModuleNames.AddRange(
new string[] {
"ContentBrowser",
"Documentation",
"MainFrame",
"DesktopPlatform",
"SkeletonEditor",
"AssetTools",
"AnimationEditor",
}
);
PublicDependencyModuleNames.AddRange(
new string[] {
"Kismet",
"Persona",
"EditorFramework"
}
);
}
}