Files
UnrealEngineUWP/Engine/Source/Programs/UnrealBuildAccelerator/UbaHost.Target.cs
joe kirchoff 9affe69d97 UnrealBuildAccelerator: Experimental for 5.4
#jira UE-197967

[CL 30002804 by joe kirchoff in ue5-main branch]
2023-11-29 18:47:11 -05:00

15 lines
351 B
C#

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