Files
UnrealEngine/Engine/Source/Programs/UnrealBuildAccelerator/UbaDetours.Target.cs
2025-05-18 13:04:45 +08:00

16 lines
422 B
C#

// Copyright Epic Games, Inc. All Rights Reserved.
using UnrealBuildTool;
[SupportedPlatforms(UnrealPlatformClass.Desktop)]
public class UbaDetoursTarget : TargetRules
{
public UbaDetoursTarget(TargetInfo Target) : base(Target)
{
LaunchModuleName = "UbaDetours";
bShouldCompileAsDLL = true;
UbaAgentTarget.CommonUbaSettings(this, Target);
GlobalDefinitions.Add("_CRT_SECURE_CPP_OVERLOAD_SECURE_NAMES=0");
}
}