Files
UnrealEngineUWP/Engine/Source/Developer/TraceServices/TraceServices.Build.cs
Arne Schober e2a4b02ddf M - Support for Unreal Insights to allow Suspend/Resume of Scope stacks which is Used by Coroutines.
#preflight 624c70b27d2eea4e18e0ad62

[CL 19639870 by Arne Schober in ue5-main branch]
2022-04-05 22:30:11 -04:00

18 lines
316 B
C#

// Copyright Epic Games, Inc. All Rights Reserved.
using UnrealBuildTool;
public class TraceServices : ModuleRules
{
public TraceServices(ReadOnlyTargetRules Target) : base(Target)
{
PublicDependencyModuleNames.AddRange(
new string[] {
"Cbor",
"Core",
"TraceAnalysis",
"SymsLib"
});
}
}