Files
UnrealEngineUWP/Engine/Source/Developer/TraceAnalysis/TraceAnalysis.Build.cs
joe kirchoff 748e7aac60 UnrealBuildTool: Auto disable SharedPCH if a module is compiling using a CppStandard older than the engine
#rnx
#jira UE-207533

[CL 33955046 by joe kirchoff in ue5-main branch]
2024-05-28 17:53:24 -04:00

25 lines
480 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;
PrivateDependencyModuleNames.AddRange(
new string[] {
"Asio",
"Cbor",
"Core",
"Sockets",
"TraceLog",
}
);
}
}