Files
UnrealEngineUWP/Engine/Plugins/Animation/AnimationWarping/Source/Runtime/AnimationWarpingRuntime.Build.cs
koray hagen 1ccdd667ca #jira UE-131665
#rb aaron.cox

Migrating the Animation Warping plugin from Experimental to Beta.
#preflight 61ab2d10003ada0304ad2b6a

#ROBOMERGE-AUTHOR: koray.hagen
#ROBOMERGE-SOURCE: CL 18376688 in //UE5/Release-5.0/... via CL 18376689 via CL 18376691
#ROBOMERGE-BOT: STARSHIP (Release-Engine-Test -> Main) (v895-18170469)

[CL 18376692 by koray hagen in ue5-main branch]
2021-12-04 04:19:01 -05:00

21 lines
446 B
C#

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