You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
* 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]
14 lines
324 B
C#
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);
|
|
}
|
|
}
|