18 lines
512 B
C#
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");
|
|
}
|
|
}
|