Files
UnrealEngineUWP/Engine/Source/Programs/BuildPatchTool/BuildPatchTool.Target.cs
Josh Adams b0e4357576 - UBT Code changes to remove 32-bit Windows support (C++ code for 32-bit still exists)
#rb marc.audy (concept, not each file)

[CL 15265424 by Josh Adams in ue5-main branch]
2021-01-31 15:09:58 -04:00

33 lines
1.1 KiB
C#

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