Source, config, and docs only — UE template assets stay local to save storage. Co-authored-by: Cursor <cursoragent@cursor.com>
17 lines
454 B
C#
17 lines
454 B
C#
// Copyright VocationLife Project. All Rights Reserved.
|
|
|
|
using UnrealBuildTool;
|
|
using System.Collections.Generic;
|
|
|
|
public class VocationLifeServerTarget : TargetRules
|
|
{
|
|
public VocationLifeServerTarget(TargetInfo Target) : base(Target)
|
|
{
|
|
Type = TargetType.Server;
|
|
DefaultBuildSettings = BuildSettingsVersion.V7;
|
|
IncludeOrderVersion = EngineIncludeOrderVersion.Unreal5_8;
|
|
ExtraModuleNames.Add("VocationLife");
|
|
bUseChecksInShipping = true;
|
|
}
|
|
}
|