2018-12-14 13:41:00 -05:00
|
|
|
// Copyright 1998-2019 Epic Games, Inc. All Rights Reserved.
|
2017-09-01 12:46:25 -04:00
|
|
|
|
|
|
|
|
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",
|
|
|
|
|
"CrashDebugHelper",
|
2019-04-09 21:27:26 -04:00
|
|
|
"CrashReportCore",
|
2017-09-01 12:46:25 -04:00
|
|
|
"HTTP",
|
|
|
|
|
"Json",
|
|
|
|
|
"Projects",
|
2018-04-26 14:11:04 -04:00
|
|
|
"PakFile",
|
2017-09-01 12:46:25 -04:00
|
|
|
"XmlParser",
|
|
|
|
|
"Analytics",
|
|
|
|
|
"AnalyticsET",
|
|
|
|
|
"DesktopPlatform",
|
2019-04-09 21:27:26 -04:00
|
|
|
"LauncherPlatform"
|
2017-09-01 12:46:25 -04:00
|
|
|
}
|
|
|
|
|
);
|
|
|
|
|
|
2018-09-12 15:59:49 -04:00
|
|
|
PrivateDependencyModuleNames.AddRange(
|
|
|
|
|
new string[]
|
|
|
|
|
{
|
|
|
|
|
"Slate",
|
|
|
|
|
"SlateCore",
|
|
|
|
|
"StandaloneRenderer",
|
|
|
|
|
"MessageLog",
|
|
|
|
|
}
|
|
|
|
|
);
|
2017-09-01 12:46:25 -04:00
|
|
|
|
2018-09-12 15:59:49 -04:00
|
|
|
PrivateIncludePathModuleNames.AddRange(
|
|
|
|
|
new string[] {
|
|
|
|
|
"SlateReflector",
|
|
|
|
|
}
|
|
|
|
|
);
|
2017-09-01 12:46:25 -04:00
|
|
|
|
2018-09-12 15:59:49 -04:00
|
|
|
DynamicallyLoadedModuleNames.AddRange(
|
|
|
|
|
new string[] {
|
|
|
|
|
"SlateReflector",
|
|
|
|
|
}
|
|
|
|
|
);
|
2017-09-01 12:46:25 -04:00
|
|
|
|
|
|
|
|
PrivateIncludePaths.Add("Runtime/Launch/Private"); // For LaunchEngineLoop.cpp include
|
|
|
|
|
|
|
|
|
|
WhitelistRestrictedFolders.Add("Private/NotForLicensees");
|
|
|
|
|
}
|
|
|
|
|
}
|