Files
UnrealEngineUWP/Engine/Source/Programs/BuildPatchTool/BuildPatchTool.Target.cs
Rolando Caloca 3f94d93915 Merging //UE4/Dev-Main@6651710 to Dev-Rendering (//UE4/Dev-Rendering)
#rnx
#rb none

[CL 6652356 by Rolando Caloca in Dev-Rendering branch]
2019-05-28 10:22:20 -04:00

33 lines
1.2 KiB
C#

// Copyright 1998-2019 Epic Games, Inc. All Rights Reserved.
using UnrealBuildTool;
using System.Collections.Generic;
[SupportedPlatforms("Win32", "Win64", "Mac", "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;
}
}