Files
UnrealEngineUWP/Engine/Source/Editor/StatsViewer/StatsViewer.Build.cs
Max Preussner c5d1e4892f StatsViewer: Implemented cooker statistics page
[CL 2285573 by Max Preussner in Main branch]
2014-09-04 22:07:39 -04:00

44 lines
838 B
C#

// Copyright 1998-2014 Epic Games, Inc. All Rights Reserved.
using UnrealBuildTool;
public class StatsViewer : ModuleRules
{
public StatsViewer(TargetInfo Target)
{
PrivateDependencyModuleNames.AddRange(
new string[] {
"AssetRegistry",
"Core",
"CoreUObject",
"Engine",
"InputCore",
"Slate",
"SlateCore",
"EditorStyle",
"RHI",
"UnrealEd"
}
);
PrivateIncludePathModuleNames.AddRange(
new string[] {
"PropertyEditor"
}
);
DynamicallyLoadedModuleNames.AddRange(
new string[] {
"PropertyEditor"
}
);
PrivateIncludePaths.AddRange(
new string[] {
"Editor/StatsViewer/Private",
"Editor/StatsViewer/Private/StatsPages",
"Editor/StatsViewer/Private/StatsEntries"
}
);
}
}