forked from DoGame/DoGame
1
0
Fork 0
DoGame/Source/DoGameEditor.Target.cs

16 lines
401 B
C#
Raw Normal View History

2023-10-07 14:25:23 +08:00
// Copyright Epic Games, Inc. All Rights Reserved.
using UnrealBuildTool;
using System.Collections.Generic;
public class DoGameEditorTarget : TargetRules
{
public DoGameEditorTarget( TargetInfo Target) : base(Target)
{
Type = TargetType.Editor;
DefaultBuildSettings = BuildSettingsVersion.V4;
IncludeOrderVersion = EngineIncludeOrderVersion.Unreal5_3;
ExtraModuleNames.Add("DoGame");
}
}