2021-03-31 06:32:34 -04:00
|
|
|
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
|
|
|
|
|
|
using UnrealBuildTool;
|
|
|
|
|
|
|
|
|
|
public class SymsLib : ModuleRules
|
|
|
|
|
{
|
|
|
|
|
public SymsLib(ReadOnlyTargetRules Target) : base(Target)
|
|
|
|
|
{
|
|
|
|
|
Type = ModuleType.External;
|
|
|
|
|
|
|
|
|
|
string LibPathBase = ModuleDirectory + "/lib";
|
|
|
|
|
|
2021-10-01 14:58:20 -04:00
|
|
|
PublicSystemIncludePaths.Add(ModuleDirectory);
|
|
|
|
|
PublicSystemIncludePaths.Add(ModuleDirectory + "/syms");
|
2021-03-31 06:32:34 -04:00
|
|
|
|
|
|
|
|
if (Target.Platform.IsInGroup(UnrealPlatformGroup.Windows))
|
|
|
|
|
{
|
|
|
|
|
bool bUseDebug = Target.Configuration == UnrealTargetConfiguration.Debug;
|
|
|
|
|
string LibPath = LibPathBase + "/x64" + (bUseDebug ? "/Debug" : "/Release");
|
|
|
|
|
PublicAdditionalLibraries.Add(LibPath + "/SymsLib.lib");
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|