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

[CL 31462120 by helge mathee in 5.4 branch]
2024-02-14 04:19:15 -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"
}
);
}
}