Files
UnrealEngineUWP/Engine/Source/Programs/InterchangeWorker/InterchangeWorker.Target.cs
alexis matte e9aeef79a1 Allow shipping target for InterchangeWorker program
#jira UE-191669
#rb jeanluc.corenthin
#rnx

[CL 26784886 by alexis matte in ue5-main branch]
2023-08-02 15:43:09 -04:00

41 lines
1.3 KiB
C#

// Copyright Epic Games, Inc. All Rights Reserved.
using UnrealBuildTool;
using System.Collections.Generic;
[SupportedPlatforms(UnrealPlatformClass.Desktop)]
[SupportedConfigurations(UnrealTargetConfiguration.Debug, UnrealTargetConfiguration.Development, UnrealTargetConfiguration.Shipping)]
public class InterchangeWorkerTarget : TargetRules
{
public InterchangeWorkerTarget(TargetInfo Target) : base(Target)
{
Type = TargetType.Program;
LinkType = TargetLinkType.Monolithic;
IncludeOrderVersion = EngineIncludeOrderVersion.Latest;
LaunchModuleName = "InterchangeWorker";
SolutionDirectory = "Programs/InterchangeWorker";
// Lean and mean
bBuildDeveloperTools = false;
// Editor-only data, however, is needed
bBuildWithEditorOnlyData = false;
// Currently this app is not linking against the engine, so we'll compile out references from Core to the rest of the engine
bCompileAgainstEngine = false;
bCompileAgainstCoreUObject = true;
bCompileAgainstApplicationCore = true;
// This is a console application, not a Windows app (sets entry point to main(), instead of WinMain())
bIsBuildingConsoleApplication = true;
bLegalToDistributeBinary = true;
bCompileICU = false;
bCompileCEF3 = false;
GlobalDefinitions.Add("USE_LOCALIZED_PACKAGE_CACHE=0");
}
}