Files
UnrealEngine/Samples/Games/Lyra/Source/LyraServer.Target.cs
2025-05-18 13:04:45 +08:00

20 lines
446 B
C#

// Copyright Epic Games, Inc. All Rights Reserved.
using UnrealBuildTool;
using System.Collections.Generic;
[SupportedPlatforms(UnrealPlatformClass.Server)]
public class LyraServerTarget : TargetRules
{
public LyraServerTarget(TargetInfo Target) : base(Target)
{
Type = TargetType.Server;
ExtraModuleNames.AddRange(new string[] { "LyraGame" });
LyraGameTarget.ApplySharedLyraTargetSettings(this);
bUseChecksInShipping = true;
}
}