2014-12-07 19:09:38 -05:00
|
|
|
// Copyright 1998-2015 Epic Games, Inc. All Rights Reserved.
|
2014-03-14 14:13:41 -04:00
|
|
|
|
|
|
|
|
using UnrealBuildTool;
|
|
|
|
|
|
|
|
|
|
public class CrashDebugHelper : ModuleRules
|
|
|
|
|
{
|
2015-03-02 07:52:38 -05:00
|
|
|
public CrashDebugHelper( TargetInfo Target )
|
2014-03-14 14:13:41 -04:00
|
|
|
{
|
2015-03-02 07:52:38 -05:00
|
|
|
PrivateIncludePaths.AddRange(
|
|
|
|
|
new string[] {
|
|
|
|
|
"Developer/CrashDebugHelper/Private/",
|
|
|
|
|
"Developer/CrashDebugHelper/Private/Linux",
|
|
|
|
|
"Developer/CrashDebugHelper/Private/Mac",
|
|
|
|
|
"Developer/CrashDebugHelper/Private/Windows",
|
|
|
|
|
}
|
|
|
|
|
);
|
|
|
|
|
PrivateIncludePaths.Add( "ThirdParty/PLCrashReporter/plcrashreporter-master-5ae3b0a/Source" );
|
2014-03-14 14:13:41 -04:00
|
|
|
|
2015-03-02 07:52:38 -05:00
|
|
|
PublicDependencyModuleNames.AddRange(
|
2014-03-14 14:13:41 -04:00
|
|
|
new string[] {
|
|
|
|
|
"Core",
|
2015-03-02 07:52:38 -05:00
|
|
|
"SourceControl"
|
2014-03-14 14:13:41 -04:00
|
|
|
}
|
2014-10-30 10:03:30 -04:00
|
|
|
);
|
2014-03-14 14:13:41 -04:00
|
|
|
}
|
|
|
|
|
}
|