Files
UnrealEngineUWP/Engine/Source/Programs/UnrealBuildAccelerator/UbaObjTool.Target.cs
henrik karlsson 8ae5ae96de [UBA]
* Object file utilities - strategical submit just to be able to be able to roll back to something that works

[CL 33614310 by henrik karlsson in ue5-main branch]
2024-05-13 20:56:57 -04:00

14 lines
324 B
C#

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