Files
UnrealEngineUWP/Engine/Source/Programs/CrashReportClient/CrashReportClientEditor.Target.cs
Ryan Durand 9ef3748747 Updating copyrights for Engine Programs.
#rnx
#rb none
#jira none

#ROBOMERGE-OWNER: ryan.durand
#ROBOMERGE-AUTHOR: ryan.durand
#ROBOMERGE-SOURCE: CL 10869242 in //Fortnite/Release-12.00/... via CL 10869536
#ROBOMERGE-BOT: FORTNITE (Main -> Dev-EngineMerge) (v613-10869866)

[CL 10870955 by Ryan Durand in Main branch]
2019-12-26 23:01:54 -05:00

29 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 CrashReportClientEditorTarget : CrashReportClientTarget
{
public CrashReportClientEditorTarget(TargetInfo Target) : base(Target)
{
LaunchModuleName = "CrashReportClientEditor";
AdditionalPlugins.Add("UdpMessaging");
AdditionalPlugins.Add("ConcertSyncServer");
bBuildWithEditorOnlyData = false;
bCompileWithPluginSupport = true; // Enable Developer plugins (like Concert!)
bBuildDeveloperTools = true;
if (Target.Configuration == UnrealTargetConfiguration.Shipping && LinkType == TargetLinkType.Monolithic)
{
// DisasterRecovery/Concert needs message bus to run. If not enabled, Recovery Service will self-disable as well. In Shipping
// message bus is turned off by default but for a monolithic build, it can be turned on just for this executable.
GlobalDefinitions.Add("PLATFORM_SUPPORTS_MESSAGEBUS=1");
}
}
}