16 lines
424 B
C#
16 lines
424 B
C#
|
|
// Copyright Epic Games, Inc. All Rights Reserved.
|
||
|
|
|
||
|
|
using UnrealBuildTool;
|
||
|
|
using System.Collections.Generic;
|
||
|
|
|
||
|
|
public class FPSTemplateServerTarget : TargetRules
|
||
|
|
{
|
||
|
|
public FPSTemplateServerTarget ( TargetInfo Target ) : base ( Target )
|
||
|
|
{
|
||
|
|
Type = TargetType.Server;
|
||
|
|
DefaultBuildSettings = BuildSettingsVersion.V5;
|
||
|
|
IncludeOrderVersion = EngineIncludeOrderVersion.Unreal5_4;
|
||
|
|
ExtraModuleNames.Add( "FPSTemplate");
|
||
|
|
}
|
||
|
|
}
|