Files
UnrealEngineUWP/Engine/Source/Developer/ProfilerService/ProfilerService.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

39 lines
766 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 ProfilerService : ModuleRules
{
public ProfilerService(ReadOnlyTargetRules Target) : base(Target)
{
PublicDependencyModuleNames.AddRange(
new string[] {
"Core",
}
);
PrivateDependencyModuleNames.AddRange(
new string[] {
"CoreUObject",
"Engine",
"ProfilerMessages",
}
);
PrivateIncludePathModuleNames.AddRange(
new string[] {
"MessagingCommon",
}
);
if (Target.Configuration != UnrealTargetConfiguration.Shipping)
{
PrecompileForTargets = PrecompileTargetsType.Any;
}
}
}
}