Files
UnrealEngineUWP/Engine/Source/Developer/TraceAnalysis/TraceAnalysis.Build.cs
joe kirchoff be5805fdca Fix some comments that give the wrong instructions when a module is forcing cpp17
#rnx

[CL 28690858 by joe kirchoff in ue5-main branch]
2023-10-11 19:24:34 -04:00

28 lines
610 B
C#

// Copyright Epic Games, Inc. All Rights Reserved.
using UnrealBuildTool;
public class TraceAnalysis : ModuleRules
{
public TraceAnalysis(ReadOnlyTargetRules Target) : base(Target)
{
UnsafeTypeCastWarningLevel = WarningLevel.Error;
// Asio does not compile with C++20, remove if updated
CppStandard = CppStandardVersion.Cpp17;
// Replace with PCHUsageMode.UseExplicitOrSharedPCHs when this plugin can compile with cpp20
PCHUsage = PCHUsageMode.NoPCHs;
PrivateDependencyModuleNames.AddRange(
new string[] {
"Asio",
"Cbor",
"Core",
"Sockets",
"TraceLog",
}
);
}
}