Files
BXSSP_Andriod/Source/BXSSP.Target.cs

17 lines
464 B
C#
Raw Permalink Normal View History

2025-10-14 11:14:54 +08:00
// Copyright Epic Games, Inc. All Rights Reserved.
using UnrealBuildTool;
using System.Collections.Generic;
public class BXSSPTarget : TargetRules
{
public BXSSPTarget(TargetInfo Target) : base(Target)
{
Type = TargetType.Game;
DefaultBuildSettings = BuildSettingsVersion.V4;
IncludeOrderVersion = EngineIncludeOrderVersion.Unreal5_3;
ExtraModuleNames.Add("BXSSP");
ExtraModuleNames.AddRange(new string[] { "BXSSP", "CesiumRuntime" });
}
}