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

15 lines
345 B
C#

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