2023-06-08 17:10:14 -04:00
|
|
|
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
|
|
|
|
|
|
using UnrealBuildTool;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
2023-06-09 14:36:47 -04:00
|
|
|
public class IntegrationTarget : TargetRules
|
2023-06-08 17:10:14 -04:00
|
|
|
{
|
2023-06-09 14:36:47 -04:00
|
|
|
public IntegrationTarget( TargetInfo Target) : base(Target)
|
2023-06-08 17:10:14 -04:00
|
|
|
{
|
|
|
|
|
Type = TargetType.Game;
|
2025-06-27 17:23:43 -04:00
|
|
|
DefaultBuildSettings = BuildSettingsVersion.Latest;
|
|
|
|
|
IncludeOrderVersion = EngineIncludeOrderVersion.Latest;
|
2023-06-09 14:36:47 -04:00
|
|
|
ExtraModuleNames.Add("Integration");
|
2023-06-08 17:10:14 -04:00
|
|
|
}
|
|
|
|
|
}
|