Files
UnrealEngineUWP/Engine/Source/Editor/AnimationEditorWidgets/AnimationEditorWidgets.Build.cs
helge mathee 1a6b15ea9f SchematicGraphPanel: Move code to editor module
#rb sara.schvartzman
#jira UE-202528
#rnx

[CL 30292678 by helge mathee in ue5-main branch]
2023-12-13 10:10:38 -05:00

35 lines
670 B
C#

// Copyright Epic Games, Inc. All Rights Reserved.
using UnrealBuildTool;
public class AnimationEditorWidgets : ModuleRules
{
public AnimationEditorWidgets(ReadOnlyTargetRules Target) : base(Target)
{
/** NOTE: THIS MODULE SHOULD NOT EVER DEPEND ON UNREALED.
* Please refer to ToolWidgets.Build.cs for more information.
*/
PublicDependencyModuleNames.AddRange(
new string[] {
"Core",
"Slate",
"SlateCore",
"InputCore",
"ToolWidgets",
"AnimationCore",
}
);
PrivateDependencyModuleNames.AddRange(
new string[]
{
"Engine",
"CoreUObject",
"UnrealEd",
"GraphEditor",
"PropertyEditor"
}
);
}
}