21 lines
512 B
C#
21 lines
512 B
C#
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
using UnrealBuildTool;
|
|
using System.Collections.Generic;
|
|
|
|
public class LuckyrobotsTarget : TargetRules
|
|
{
|
|
public LuckyrobotsTarget(TargetInfo Target) : base(Target)
|
|
{
|
|
Type = TargetType.Game;
|
|
DefaultBuildSettings = BuildSettingsVersion.V5;
|
|
IncludeOrderVersion = EngineIncludeOrderVersion.Unreal5_5;
|
|
ExtraModuleNames.Add("Luckyrobots");
|
|
|
|
if (Target.Configuration == UnrealTargetConfiguration.Test)
|
|
{
|
|
this.bUseLoggingInShipping = true;
|
|
}
|
|
}
|
|
}
|