You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
#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]
32 lines
549 B
C#
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"
|
|
}
|
|
);
|
|
}
|
|
}
|
|
}
|