Files
UnrealEngineUWP/Engine/Source/Editor/AnimGraph/AnimGraph.Build.cs
Ben Marsh 149375b14b Update copyright notices to 2015.
[CL 2379638 by Ben Marsh in Main branch]
2014-12-07 19:09:38 -05:00

38 lines
676 B
C#

// Copyright 1998-2015 Epic Games, Inc. All Rights Reserved.
using UnrealBuildTool;
using System.IO;
public class AnimGraph : ModuleRules
{
public AnimGraph(TargetInfo Target)
{
PrivateIncludePaths.Add("Editor/AnimGraph/Private");
PublicDependencyModuleNames.AddRange(
new string[] {
"Core",
"CoreUObject",
"Engine",
"Slate",
"BlueprintGraph",
}
);
PrivateDependencyModuleNames.AddRange(
new string[] {
"SlateCore",
"UnrealEd",
"GraphEditor",
}
);
CircularlyReferencedDependentModules.AddRange(
new string[] {
"UnrealEd",
"GraphEditor",
}
);
}
}