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