2021-11-30 11:02:35 -05:00
|
|
|
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
|
|
|
|
|
|
using UnrealBuildTool;
|
|
|
|
|
|
|
|
|
|
public class AnimationWidgets : ModuleRules
|
|
|
|
|
{
|
|
|
|
|
public AnimationWidgets(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",
|
|
|
|
|
}
|
|
|
|
|
);
|
2023-05-10 09:55:11 -04:00
|
|
|
|
|
|
|
|
if (Target.Type == TargetType.Editor)
|
|
|
|
|
{
|
|
|
|
|
PrivateDependencyModuleNames.AddRange(
|
|
|
|
|
new string[]
|
|
|
|
|
{
|
2023-12-04 10:49:54 -05:00
|
|
|
"Engine",
|
|
|
|
|
"CoreUObject",
|
|
|
|
|
"UnrealEd",
|
|
|
|
|
"GraphEditor",
|
2023-05-10 09:55:11 -04:00
|
|
|
"PropertyEditor"
|
|
|
|
|
}
|
|
|
|
|
);
|
|
|
|
|
}
|
2021-11-30 11:02:35 -05:00
|
|
|
}
|
|
|
|
|
}
|