Files
UnrealEngineUWP/Engine/Plugins/Animation/AnimationLocomotionLibrary/Source/Editor/AnimationLocomotionLibraryEditor.Build.cs
Martin Sevigny 3686eae71a Add a ShortName to modules that generated paths over the 200 chars limit and a few modules that were realy close (198+)
#rb Joe.Kirchoff
#jira none

[CL 26461049 by Martin Sevigny in 5.3 branch]
2023-07-19 10:58:57 -04:00

34 lines
630 B
C#

// Copyright Epic Games, Inc. All Rights Reserved.
namespace UnrealBuildTool.Rules
{
public class AnimationLocomotionLibraryEditor : ModuleRules
{
public AnimationLocomotionLibraryEditor(ReadOnlyTargetRules Target) : base(Target)
{
PublicDependencyModuleNames.AddRange(
new string[]
{
"Core",
"CoreUObject",
"Engine",
"AnimGraphRuntime",
"AnimationModifiers",
"AnimationBlueprintLibrary"
});
PrivateDependencyModuleNames.AddRange(
new string[]
{
});
PrivateIncludePathModuleNames.AddRange(
new string[]
{
});
ShortName = "AnimLLEd";
}
}
}