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