Files
UnrealEngineUWP/Engine/Source/Programs/BuildPatchTool/BuildPatchTool.Target.cs
Ben Marsh a22b952aa9 Copying //UE4/Dev-Build to Dev-Main (//UE4/Dev-Main)
#rb none
#rnx

[CL 4718806 by Ben Marsh in Main branch]
2019-01-14 12:11:24 -05:00

33 lines
1.2 KiB
C#

// Copyright 1998-2019 Epic Games, Inc. All Rights Reserved.
using UnrealBuildTool;
using System.Collections.Generic;
[SupportedPlatforms(UnrealTargetPlatform.Win32, UnrealTargetPlatform.Win64, UnrealTargetPlatform.Mac, UnrealTargetPlatform.Linux)]
[SupportedConfigurations(UnrealTargetConfiguration.Debug, UnrealTargetConfiguration.Development, UnrealTargetConfiguration.Shipping)]
public class BuildPatchToolTarget : TargetRules
{
public BuildPatchToolTarget(TargetInfo Target) : base(Target)
{
Type = TargetType.Program;
LinkType = TargetLinkType.Monolithic;
LaunchModuleName = "BuildPatchTool";
bOutputPubliclyDistributable = true;
UndecoratedConfiguration = UnrealTargetConfiguration.Shipping;
bCompileAgainstEngine = false;
bCompileAgainstCoreUObject = false;
if(Target.Configuration == UnrealTargetConfiguration.Shipping)
{
// AutomationController is referenced by BuildPatchTool.build.cs, and references a ton of editor things that it probably shouldn't. Need ApplicationCore for this.
bCompileAgainstApplicationCore = false;
}
bBuildDeveloperTools = false;
bUseLoggingInShipping = true;
bUseChecksInShipping = true;
bIsBuildingConsoleApplication = true;
bHasExports = false;
bWithServerCode = false;
}
}