Files
InventoryProject/Source/InventoryProjectEditor.Target.cs

16 lines
430 B
C#
Raw Permalink Normal View History

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