16 lines
395 B
C#
16 lines
395 B
C#
|
// Copyright Epic Games, Inc. All Rights Reserved.
|
||
|
|
||
|
using UnrealBuildTool;
|
||
|
using System.Collections.Generic;
|
||
|
|
||
|
public class Cut5EditorTarget : TargetRules
|
||
|
{
|
||
|
public Cut5EditorTarget( TargetInfo Target) : base(Target)
|
||
|
{
|
||
|
Type = TargetType.Editor;
|
||
|
DefaultBuildSettings = BuildSettingsVersion.V2;
|
||
|
IncludeOrderVersion = EngineIncludeOrderVersion.Unreal5_1;
|
||
|
ExtraModuleNames.Add("Cut5");
|
||
|
}
|
||
|
}
|