Files
UnrealEngineUWP/Engine/Source/Runtime/SymsLib/SymsLib.Build.cs
Johan Berg 37e0f1d7b9 RAD symbol library
The RAD symbol library support many debug info formats such as pdb and elf variants. It also supports multithreaded debug info parsing and symbol lookups. Compiled libraries for Windows and headers.

#rb stefan.boberg

[CL 15872888 by Johan Berg in ue5-main branch]
2021-03-31 06:32:34 -04:00

24 lines
650 B
C#

// 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";
string IncludePath = ModuleDirectory + "/include";
PublicSystemIncludePaths.Add(IncludePath);
if (Target.Platform.IsInGroup(UnrealPlatformGroup.Windows))
{
bool bUseDebug = Target.Configuration == UnrealTargetConfiguration.Debug;
string LibPath = LibPathBase + "/x64" + (bUseDebug ? "/Debug" : "/Release");
PublicAdditionalLibraries.Add(LibPath + "/SymsLib.lib");
}
}
}