Files
UnrealEngineUWP/Engine/Plugins/Animation/AnimationLocomotionLibrary/Source/Runtime/AnimationLocomotionLibraryRuntime.Build.cs
martin sevigny 574e8e6e2e 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

[CL 26461514 by martin sevigny in ue5-main branch]
2023-07-19 11:10:49 -04:00

28 lines
587 B
C#

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