Files
UnrealEngineUWP/Engine/Plugins/RenderGraphInsights/Source/RenderGraphInsights/RenderGraphInsights.Build.cs
zach bethel 50d368cbf4 Improved sorting and coloration of resources in RDG insights.
#rb none
#rnx

[CL 15338594 by zach bethel in ue5-main branch]
2021-02-05 12:11:16 -04:00

28 lines
478 B
C#

// Copyright Epic Games, Inc. All Rights Reserved.
namespace UnrealBuildTool.Rules
{
public class RenderGraphInsights : ModuleRules
{
public RenderGraphInsights(ReadOnlyTargetRules Target) : base(Target)
{
PrivateDependencyModuleNames.AddRange(
new string[]
{
"Core",
"CoreUObject",
"RenderCore",
"RHI",
"SlateCore",
"Slate",
"TraceLog",
"TraceAnalysis",
"TraceServices",
"TraceInsights",
"InputCore"
});
}
}
}