Files
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

14 lines
324 B
C#

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