Files
integration/Source/Integration.Target.cs

16 lines
403 B
C#
Raw Permalink Normal View History

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;
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
}
}