Files
UnrealEngineUWP/Engine/Source/Editor/AnimationEditorWidgets/AnimationEditorWidgets.Build.cs
helge mathee 1b70678052 Schematic: Fix DPI scaling for high res screens
#rb benoit.gadreau
#jira UE-206788
#rnx

[CL 31462085 by helge mathee in ue5-main branch]
2024-02-14 04:17:44 -05:00

36 lines
693 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",
"ApplicationCore",
}
);
PrivateDependencyModuleNames.AddRange(
new string[]
{
"Engine",
"CoreUObject",
"UnrealEd",
"GraphEditor",
"PropertyEditor"
}
);
}
}