Files
UnrealEngineUWP/Engine/Source/Developer/ProfilerClient/ProfilerClient.Build.cs
ionut matasaru 973ace10b0 Marked the Profiler* modules as deprecated. The old Profiler is actually deprecated since UE 5.0, superceeded by Trace/UnrealInsights.
#rb Catalin.Dragoiu, Johan.Berg

[CL 36387437 by ionut matasaru in 5.5 branch]
2024-09-18 08:52:26 -04:00

38 lines
745 B
C#

// Copyright Epic Games, Inc. All Rights Reserved.
using System;
namespace UnrealBuildTool.Rules
{
[Obsolete("Profiler is deprecated since UE 5.0 - use Trace/UnrealInsights instead.")]
public class ProfilerClient : ModuleRules
{
public ProfilerClient(ReadOnlyTargetRules Target) : base(Target)
{
UnsafeTypeCastWarningLevel = WarningLevel.Error;
PublicIncludePathModuleNames.Add("ProfilerService");
PublicDependencyModuleNames.AddRange(
new string[] {
"Core",
}
);
PrivateDependencyModuleNames.AddRange(
new string[] {
"CoreUObject",
"ProfilerMessages",
}
);
PrivateIncludePathModuleNames.AddRange(
new string[] {
"Messaging",
"MessagingCommon",
}
);
}
}
}