You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
62 lines
1.0 KiB
C#
62 lines
1.0 KiB
C#
// Copyright 1998-2015 Epic Games, Inc. All Rights Reserved.
|
|
|
|
using UnrealBuildTool;
|
|
|
|
public class Profiler : ModuleRules
|
|
{
|
|
public Profiler( TargetInfo Target )
|
|
{
|
|
PrivateIncludePaths.AddRange
|
|
(
|
|
new string[] {
|
|
"Developer/Profiler/Private",
|
|
"Developer/Profiler/Private/Widgets",
|
|
}
|
|
);
|
|
|
|
PublicDependencyModuleNames.AddRange
|
|
(
|
|
new string[] {
|
|
"Core",
|
|
"InputCore",
|
|
"RHI",
|
|
"RenderCore",
|
|
"Slate",
|
|
"EditorStyle",
|
|
"ProfilerClient",
|
|
"DesktopPlatform",
|
|
}
|
|
);
|
|
|
|
if (UEBuildConfiguration.bBuildEditor)
|
|
{
|
|
PrivateDependencyModuleNames.AddRange(
|
|
new string[] {
|
|
"Engine",
|
|
}
|
|
);
|
|
}
|
|
|
|
PrivateDependencyModuleNames.AddRange(
|
|
new string[] {
|
|
"SlateCore",
|
|
}
|
|
);
|
|
|
|
PrivateIncludePathModuleNames.AddRange(
|
|
new string[] {
|
|
"Messaging",
|
|
"SessionServices",
|
|
}
|
|
);
|
|
|
|
PublicIncludePaths.AddRange
|
|
(
|
|
new string[] {
|
|
"Developer/Profiler/Public",
|
|
"Developer/Profiler/Public/Interfaces",
|
|
}
|
|
);
|
|
}
|
|
}
|