Files
utad-ui/Source/UTAD_UIEditor.Target.cs
2025-10-10 20:23:14 +02:00

16 lines
403 B
C#

// Copyright Epic Games, Inc. All Rights Reserved.
using UnrealBuildTool;
using System.Collections.Generic;
public class UTAD_UIEditorTarget : TargetRules
{
public UTAD_UIEditorTarget(TargetInfo Target) : base(Target)
{
Type = TargetType.Editor;
DefaultBuildSettings = BuildSettingsVersion.V5;
IncludeOrderVersion = EngineIncludeOrderVersion.Unreal5_5;
ExtraModuleNames.Add("UTAD_UI");
}
}