lyra_game_ue/Source/LyraServer.Target.cs
Goran Lazarevski 3bcab085f8 Initial commit
2025-03-20 11:06:26 +01: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;
}
}