You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
#jira none [REVIEW] [at]Aaron.Cox, [at]Fernando.Coello #preflight 6331d4da7b582f58ab73e0b7 [CL 22191835 by jose villarroel in ue5-main branch]
45 lines
1012 B
C#
45 lines
1012 B
C#
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
namespace UnrealBuildTool.Rules
|
|
{
|
|
public class AnimationWarpingEditor : ModuleRules
|
|
{
|
|
public AnimationWarpingEditor(ReadOnlyTargetRules Target) : base(Target)
|
|
{
|
|
PublicDependencyModuleNames.AddRange(
|
|
new string[]
|
|
{
|
|
"AnimationCore",
|
|
"AnimationWarpingRuntime",
|
|
"AnimGraph",
|
|
"AnimGraphRuntime",
|
|
"AnimationModifiers",
|
|
"AnimationBlueprintLibrary",
|
|
"AnimationModifierLibrary",
|
|
"Core",
|
|
"CoreUObject",
|
|
"Engine",
|
|
});
|
|
|
|
PrivateDependencyModuleNames.AddRange(
|
|
new string[]
|
|
{
|
|
"SlateCore",
|
|
});
|
|
|
|
if (Target.bBuildEditor == true)
|
|
{
|
|
PrivateDependencyModuleNames.AddRange(
|
|
new string[]
|
|
{
|
|
"BlueprintGraph",
|
|
"EditorFramework",
|
|
"Kismet",
|
|
"UnrealEd",
|
|
}
|
|
);
|
|
}
|
|
}
|
|
}
|
|
}
|