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 IntegrationEditorTarget : TargetRules
|
2023-06-08 17:10:14 -04:00
|
|
|
{
|
2023-06-09 14:36:47 -04:00
|
|
|
public IntegrationEditorTarget( TargetInfo Target) : base(Target)
|
2023-06-08 17:10:14 -04:00
|
|
|
{
|
|
|
|
|
Type = TargetType.Editor;
|
|
|
|
|
DefaultBuildSettings = BuildSettingsVersion.V2;
|
|
|
|
|
IncludeOrderVersion = EngineIncludeOrderVersion.Unreal5_1;
|
2023-06-09 14:36:47 -04:00
|
|
|
ExtraModuleNames.Add("Integration");
|
2023-06-08 17:10:14 -04:00
|
|
|
}
|
|
|
|
|
}
|