Files
UnrealEngineUWP/Engine/Source/Developer/TaskGraph/TaskGraph.Build.cs
T

21 lines
354 B
C#
Raw Normal View History

2014-12-07 19:09:38 -05:00
// Copyright 1998-2015 Epic Games, Inc. All Rights Reserved.
using UnrealBuildTool;
public class TaskGraph : ModuleRules
{
public TaskGraph(TargetInfo Target)
{
PrivateDependencyModuleNames.AddRange(
new string[] {
"Core",
"Slate",
"SlateCore",
"EditorStyle",
"Engine",
"InputCore"
}
);
}
}