Files
UnrealEngineUWP/Engine/Source/Programs/CrashReportClient/CrashReportClient.Build.cs
patrick laflamme f680dfec6a Enable the Crash Report Monitor for the client
- Split the Editor analytics summary in and Engine summary and an Editor summary

[at]james.doverspike


#ROBOMERGE-OWNER: patrick.laflamme
#ROBOMERGE-AUTHOR: patrick.laflamme
#ROBOMERGE-SOURCE: CL 16397283 via CL 16397290 via CL 16397689 via CL 16397764 via CL 16399290
#ROBOMERGE-BOT: (v804-16311228)
#ROBOMERGE-CONFLICT from-shelf

[CL 16405846 by patrick laflamme in ue5-release-engine-staging branch]
2021-05-20 13:06:20 -04:00

67 lines
1.2 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
PrivateDefinitions.AddRange(
new string[]
{
"CRASH_REPORT_WITH_MTBF=1",
}
);
}
}