You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
#rb none #preflight 63c0b51270575f8900f32bb8 [CL 23685277 by robert millar in ue5-main branch]
20 lines
545 B
C#
20 lines
545 B
C#
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
using UnrealBuildTool;
|
|
using System.IO;
|
|
|
|
public class RawPDB : ModuleRules
|
|
{
|
|
public RawPDB(ReadOnlyTargetRules Target) : base(Target)
|
|
{
|
|
Type = ModuleType.External;
|
|
|
|
if (Target.Platform == UnrealTargetPlatform.Win64)
|
|
{
|
|
PublicDefinitions.Add("WITH_RAWPDB=1");
|
|
PublicSystemIncludePaths.Add(Path.Combine(ModuleDirectory, "include"));
|
|
PublicAdditionalLibraries.Add(Path.Combine(ModuleDirectory, "bin", "Win64", "rawpdb.lib"));
|
|
}
|
|
}
|
|
}
|