Files
UnrealEngineUWP/Engine/Source/Runtime/AnimGraphRuntime/AnimGraphRuntime.Build.cs
Max Chen e4d4965491 Merging //UE4/Dev-Main to Dev-Editor (//UE4/Dev-Editor)
#rb none

[CL 7774443 by Max Chen in Dev-Editor branch]
2019-08-05 15:48:51 -04:00

35 lines
768 B
C#

// Copyright 1998-2019 Epic Games, Inc. All Rights Reserved.
using UnrealBuildTool;
using System.IO;
public class AnimGraphRuntime : ModuleRules
{
public AnimGraphRuntime(ReadOnlyTargetRules Target) : base(Target)
{
PrivateIncludePaths.Add("Runtime/AnimGraphRuntime/Private");
PublicDependencyModuleNames.AddRange(
new string[] {
"Core",
"CoreUObject",
"Engine",
"AnimationCore",
}
);
SetupModulePhysicsSupport(Target);
if (Target.bCompileChaos || Target.bUseChaos)
{
PublicDependencyModuleNames.AddRange(
new string[] {
"ChaosSolvers",
"GeometryCollectionEngine",
"GeometryCollectionSimulationCore"
}
);
}
}
}