Files
UnrealEngine/Engine/Source/Runtime/Instrumentation/Instrumentation.Build.cs
Brandyn / Techy fcc1b09210 init
2026-04-04 15:40:51 -05:00

19 lines
489 B
C#

// Copyright Epic Games, Inc. All Rights Reserved.
using UnrealBuildTool;
using System;
using System.IO;
public class Instrumentation : ModuleRules
{
public Instrumentation(ReadOnlyTargetRules Target) : base(Target)
{
bRequiresImplementModule = false;
PrivateIncludePathModuleNames.Add("Core");
PrivateDefinitions.Add("SUPPRESS_PER_MODULE_INLINE_FILE"); // This module does not use core's standard operator new/delete overloads
bDisableAutoRTFMInstrumentation = true;
}
}