2022-03-24 08:26:10 -04:00
|
|
|
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
|
|
|
|
|
|
using UnrealBuildTool;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
|
|
|
|
public class UnrealVirtualizationToolTarget : TargetRules
|
|
|
|
|
{
|
|
|
|
|
public UnrealVirtualizationToolTarget(TargetInfo Target) : base(Target)
|
|
|
|
|
{
|
|
|
|
|
Type = TargetType.Program;
|
|
|
|
|
LinkType = TargetLinkType.Monolithic;
|
2022-04-04 07:51:32 -04:00
|
|
|
IncludeOrderVersion = EngineIncludeOrderVersion.Latest;
|
2022-03-24 08:26:10 -04:00
|
|
|
|
|
|
|
|
LaunchModuleName = "UnrealVirtualizationTool";
|
|
|
|
|
|
|
|
|
|
bBuildDeveloperTools = false;
|
|
|
|
|
bUseMallocProfiler = false;
|
|
|
|
|
|
|
|
|
|
bCompileAgainstEditor = false;
|
|
|
|
|
bBuildWithEditorOnlyData = true;
|
|
|
|
|
|
|
|
|
|
// Currently this app is not linking against the engine, so we'll compile out references from Core to the rest of the engine
|
|
|
|
|
bCompileAgainstApplicationCore = true;
|
|
|
|
|
bCompileAgainstCoreUObject = true;
|
|
|
|
|
bCompileAgainstEngine = false;
|
|
|
|
|
bUsesSlate = false;
|
|
|
|
|
|
|
|
|
|
// UnrealHeaderTool is a console application, not a Windows app (sets entry point to main(), instead of WinMain())
|
|
|
|
|
bIsBuildingConsoleApplication = true;
|
|
|
|
|
|
|
|
|
|
// Enable Developer plugins
|
|
|
|
|
bCompileWithPluginSupport = true;
|
|
|
|
|
|
|
|
|
|
AdditionalPlugins.Add("PerforceSourceControl");
|
|
|
|
|
|
|
|
|
|
GlobalDefinitions.Add("UE_TRACE_ENABLED=1");
|
|
|
|
|
GlobalDefinitions.Add("UE_SUPPORT_FULL_PACKAGEPATH=1");
|
|
|
|
|
GlobalDefinitions.Add("UE_DISABLE_PLUGIN_DISCOVERY=1");
|
|
|
|
|
}
|
|
|
|
|
}
|