Files
UnrealEngine/Engine/Source/Programs/AutoRTFMTests/AutoRTFMTestsWithSTATS.Target.cs
Brandyn / Techy fcc1b09210 init
2026-04-04 15:40:51 -05:00

18 lines
512 B
C#

// Copyright Epic Games, Inc. All Rights Reserved.
using EpicGames.Core;
using UnrealBuildTool;
using System.Collections.Generic;
using UnrealBuildBase;
[SupportedPlatforms(UnrealPlatformClass.All)]
public class AutoRTFMTestsWithSTATSTarget : AutoRTFMTestsTarget
{
public AutoRTFMTestsWithSTATSTarget(TargetInfo Target) : base(Target)
{
GlobalDefinitions.Remove("ENABLE_STATNAMEDEVENTS=1");
GlobalDefinitions.Remove("ENABLE_STATNAMEDEVENTS_UOBJECT=1");
GlobalDefinitions.Add("FORCE_USE_STATS=1");
}
}