Files
UnrealEngineUWP/Engine/Source/Programs/CrashReportClient/CrashReportClient.Build.cs
aurel cordonnier 43fa62fcd8 Merge from Release-Engine-Test @ 16487383 to UE5/Main
This represents UE4/Main @ 16445039 and Dev-PerfTest @ 16444526

[CL 16488106 by aurel cordonnier in ue5-main branch]
2021-05-27 13:40:37 -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",
}
);
}
}