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

16 lines
386 B
C#
Raw Permalink 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 DoGameTarget : TargetRules
{
public DoGameTarget(TargetInfo Target) : base(Target)
{
Type = TargetType.Game;
DefaultBuildSettings = BuildSettingsVersion.V4;
IncludeOrderVersion = EngineIncludeOrderVersion.Unreal5_3;
ExtraModuleNames.Add("DoGame");
}
}