Files
UnrealEngineUWP/Engine/Source/Editor/AnimationBlueprintEditor/AnimationBlueprintEditor.Build.cs
bryan sefcik 483f93dc1a Fixed misc include paths
#jira
#preflight 634f491669246074dbb2719d

[CL 22633214 by bryan sefcik in ue5-main branch]
2022-10-19 14:38:31 -04:00

75 lines
1.6 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[] {
"AssetRegistry",
"MainFrame",
"DesktopPlatform",
"SkeletonEditor",
"ContentBrowser",
"AssetTools",
"AnimationEditor",
"MessageLog"
}
);
PrivateIncludePaths.AddRange(
new string[] {
System.IO.Path.Combine(GetModuleDirectory("Persona"), "Private"),
}
);
PrivateDependencyModuleNames.AddRange(
new string[] {
"AppFramework",
"Core",
"CoreUObject",
"Slate",
"SlateCore",
"EditorStyle",
"Engine",
"EditorFramework",
"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"
}
);
}
}