Files
UnrealEngineUWP/Engine/Source/Developer/TaskGraph/TaskGraph.Build.cs
JeanMichel Dignard a53d8daaa1 Copying //UE4/Dev-Enterprise to //UE4/Dev-Main (Source: //UE4/Dev-Enterprise @ 3622748)
#lockdown Nick.Penwarden
#rb none

============================
  MAJOR FEATURES & CHANGES
============================

Change 3576719 by JeanMichel.Dignard

	Made IntroSort the default sort.

	- Algo::Sort and ::Sort will call Algo::IntroSort
	- The sort version that was in Algo::Sort is now in Algo::LegacySort

Change 3604785 by Martin.Sevigny

	Add Save/Load to ProfileVisualizer
	Expose ProfileVizualizer in Windows\Developer Tools\Debug menu

[CL 3622769 by JeanMichel Dignard in Main branch]
2017-09-01 13:44:36 -04:00

32 lines
549 B
C#

// Copyright 1998-2017 Epic Games, Inc. All Rights Reserved.
using UnrealBuildTool;
public class TaskGraph : ModuleRules
{
public TaskGraph(ReadOnlyTargetRules Target) : base(Target)
{
PrivateDependencyModuleNames.AddRange(
new string[] {
"Core",
"CoreUObject",
"Slate",
"SlateCore",
"EditorStyle",
"Engine",
"InputCore"
}
);
if (Target.Type == TargetType.Editor)
{
PrivateDependencyModuleNames.AddRange(
new string[] {
"WorkspaceMenuStructure",
"DesktopPlatform"
}
);
}
}
}