17 lines
		
	
	
		
			464 B
		
	
	
	
		
			C#
		
	
	
	
	
	
		
		
			
		
	
	
			17 lines
		
	
	
		
			464 B
		
	
	
	
		
			C#
		
	
	
	
	
	
| 
								 | 
							
								// 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" });
							 | 
						||
| 
								 | 
							
								    }
							 | 
						||
| 
								 | 
							
								}
							 |