You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
25 lines
480 B
C#
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",
|
|
}
|
|
);
|
|
}
|
|
}
|