Files
UnrealEngineUWP/Engine/Plugins/Animation/AnimationLocomotionLibrary/Source/Runtime/AnimationLocomotionLibraryRuntime.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

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";
}
}
}