Files
UnrealEngineUWP/Engine/Source/Runtime/AnimGraphRuntime/AnimGraphRuntime.Build.cs
Ryan Gerleve bcca42e74a Merging //UE4/Dev-Main to Dev-Networking (//UE4/Dev-Networking)
#rb none
#rnx

[CL 4284864 by Ryan Gerleve in Dev-Networking branch]
2018-08-14 15:58:25 -04:00

24 lines
486 B
C#

// Copyright 1998-2018 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",
"PhysX",
"APEX"
}
);
}
}