Files
UnrealEngineUWP/Engine/Source/Programs/SubmitTool/SubmitTool.Target.cs
juan legaz bb83ca4562 Moving Submit Tool to Source/Programs
#jira UES-7210
#rb benoit.chauvin
#rn [Experimental] Publishing Submit Tool code

[CL 36977217 by juan legaz in 5.5 branch]
2024-10-09 10:04:40 -04:00

51 lines
1.6 KiB
C#

// Copyright Epic Games, Inc. All Rights Reserved.
using UnrealBuildTool;
[SupportedPlatforms(UnrealPlatformClass.Desktop)]
public class SubmitToolTarget : TargetRules
{
public SubmitToolTarget(TargetInfo Target) : base(Target)
{
Type = TargetType.Program;
LinkType = TargetLinkType.Monolithic;
IncludeOrderVersion = EngineIncludeOrderVersion.Latest;
LaunchModuleName = "SubmitTool";
bUseXGEController = false;
bLoggingToMemoryEnabled = true;
bUseLoggingInShipping = true;
bCompileWithAccessibilitySupport= false;
bWithServerCode = false;
bCompileNavmeshClusterLinks = false;
bCompileNavmeshSegmentLinks = false;
bCompileRecast = false;
bCompileICU = true;
bWithLiveCoding = false;
bBuildDeveloperTools = false;
bBuildWithEditorOnlyData = false;
bCompileAgainstEngine = false;
bCompileAgainstCoreUObject = true;
bUsesSlate = true;
bIsBuildingConsoleApplication = false;
bCompileWithPluginSupport = true;
bBuildRequiresCookedData = false;
bEnableTrace = true;
bHasExports = false;
EnablePlugins.Add("PerforceSourceControl");
WindowsPlatform.bStripUnreferencedSymbols = true;
WindowsPlatform.bMergeIdenticalCOMDATs = true;
WindowsPlatform.bUseBundledDbgHelp = false;
WindowsPlatform.bPixProfilingEnabled = false;
GlobalDefinitions.Add("AUTOSDKS_ENABLED=0");
GlobalDefinitions.Add("UE_TRACE_AUTOSTART=1");
OptedInModulePlatforms = new UnrealTargetPlatform[] { UnrealTargetPlatform.Win64, UnrealTargetPlatform.Mac,
UnrealTargetPlatform.Linux, UnrealTargetPlatform.LinuxArm64 };
}
}