Files
UnrealEngine/Samples/Games/Lyra/Source/LyraServer.Target.cs
Brandyn / Techy fcc1b09210 init
2026-04-04 15:40:51 -05: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;
}
}