You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
#jira #ROBOMERGE-SOURCE: CL 12737887 via CL 12737889 via CL 12737893 #ROBOMERGE-BOT: RELEASE (Release-Engine-Staging -> Main) (v676-12543919) [CL 12737900 by ben marsh in Main branch]
60 lines
1.1 KiB
C#
60 lines
1.1 KiB
C#
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
using UnrealBuildTool;
|
|
|
|
public class CrashReportClient : ModuleRules
|
|
{
|
|
public CrashReportClient(ReadOnlyTargetRules Target) : base(Target)
|
|
{
|
|
PublicIncludePaths.AddRange
|
|
(
|
|
new string[]
|
|
{
|
|
"Runtime/Launch/Public",
|
|
"Programs/CrashReportClient/Private",
|
|
}
|
|
);
|
|
|
|
PrivateDependencyModuleNames.AddRange(
|
|
new string[]
|
|
{
|
|
"Core",
|
|
"CoreUObject",
|
|
"ApplicationCore",
|
|
"CrashReportCore",
|
|
"HTTP",
|
|
"Json",
|
|
"Projects",
|
|
"PakFile",
|
|
"XmlParser",
|
|
"Analytics",
|
|
"AnalyticsET",
|
|
"DesktopPlatform",
|
|
"LauncherPlatform",
|
|
"InputCore",
|
|
"Slate",
|
|
"SlateCore",
|
|
"StandaloneRenderer",
|
|
"MessageLog",
|
|
}
|
|
);
|
|
|
|
if (Target.Configuration != UnrealTargetConfiguration.Shipping)
|
|
{
|
|
PrivateIncludePathModuleNames.AddRange(
|
|
new string[] {
|
|
"SlateReflector",
|
|
}
|
|
);
|
|
|
|
DynamicallyLoadedModuleNames.AddRange(
|
|
new string[] {
|
|
"SlateReflector",
|
|
}
|
|
);
|
|
}
|
|
|
|
PrivateIncludePaths.Add("Runtime/Launch/Private"); // For LaunchEngineLoop.cpp include
|
|
}
|
|
}
|