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