You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
#rb Ionut.Matasaru #ROBOMERGE-AUTHOR: martins.mozeiko #ROBOMERGE-SOURCE: CL 17694937 in //UE5/Main/... #ROBOMERGE-BOT: STARSHIP (Main -> Release-Engine-Test) (v875-17642767) #ROBOMERGE[STARSHIP]: UE5-Release-Engine-Staging Release-5.0 [CL 17695152 by martins mozeiko in ue5-release-engine-test branch]
24 lines
660 B
C#
24 lines
660 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";
|
|
|
|
PublicSystemIncludePaths.Add(ModuleDirectory);
|
|
PublicSystemIncludePaths.Add(ModuleDirectory + "/syms");
|
|
|
|
if (Target.Platform.IsInGroup(UnrealPlatformGroup.Windows))
|
|
{
|
|
bool bUseDebug = Target.Configuration == UnrealTargetConfiguration.Debug;
|
|
string LibPath = LibPathBase + "/x64" + (bUseDebug ? "/Debug" : "/Release");
|
|
PublicAdditionalLibraries.Add(LibPath + "/SymsLib.lib");
|
|
}
|
|
}
|
|
}
|