You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
#rb trivial #jira UE-155158 #preflight 62964a4b95336ad2bfc79f49 #ROBOMERGE-OWNER: lauren.barnes #ROBOMERGE-AUTHOR: lauren.barnes #ROBOMERGE-SOURCE: CL 20440663 via CL 20442312 via CL 20442429 via CL 20442440 #ROBOMERGE-BOT: UE5 (Release-Engine-Staging -> Main) (v949-20362246) [CL 20449508 by lauren barnes in ue5-main branch]
55 lines
934 B
C#
55 lines
934 B
C#
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
using UnrealBuildTool;
|
|
|
|
public class Profiler : ModuleRules
|
|
{
|
|
public Profiler( ReadOnlyTargetRules Target ) : base(Target)
|
|
{
|
|
PrivateIncludePaths.AddRange
|
|
(
|
|
new string[] {
|
|
"Developer/Profiler/Private",
|
|
"Developer/Profiler/Private/Widgets",
|
|
}
|
|
);
|
|
|
|
PublicDependencyModuleNames.AddRange
|
|
(
|
|
new string[] {
|
|
"Core",
|
|
"ApplicationCore",
|
|
"InputCore",
|
|
"RHI",
|
|
"RenderCore",
|
|
"Slate",
|
|
"ProfilerClient",
|
|
"DesktopPlatform",
|
|
}
|
|
);
|
|
|
|
if (Target.bBuildEditor)
|
|
{
|
|
PrivateDependencyModuleNames.AddRange(
|
|
new string[] {
|
|
"Engine",
|
|
}
|
|
);
|
|
}
|
|
|
|
PrivateDependencyModuleNames.AddRange(
|
|
new string[] {
|
|
"SlateCore",
|
|
"ToolWidgets"
|
|
}
|
|
);
|
|
|
|
PrivateIncludePathModuleNames.AddRange(
|
|
new string[] {
|
|
"Messaging",
|
|
"SessionServices",
|
|
}
|
|
);
|
|
}
|
|
}
|