26 lines
456 B
C#
26 lines
456 B
C#
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
namespace UnrealBuildTool.Rules
|
|
{
|
|
public class MassInsightsUI : ModuleRules
|
|
{
|
|
public MassInsightsUI(ReadOnlyTargetRules Target) : base(Target)
|
|
{
|
|
PrivateDependencyModuleNames.AddRange(
|
|
new string[]
|
|
{
|
|
"Core",
|
|
"CoreUObject",
|
|
"SlateCore",
|
|
"Slate",
|
|
"InputCore",
|
|
"TraceInsights",
|
|
"TraceInsightsCore",
|
|
"TraceServices",
|
|
"MassInsightsAnalysis",
|
|
});
|
|
}
|
|
}
|
|
}
|
|
|