You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
#jira UE-141779 #rb Joe.Kirchoff #rb Johan.Berg #preflight 64380aea7a00790bfd116430 [CL 25101875 by ionut matasaru in ue5-main branch]
45 lines
1.4 KiB
C#
45 lines
1.4 KiB
C#
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
using UnrealBuildTool;
|
|
using System.Collections.Generic;
|
|
|
|
public class UnrealPakTarget : TargetRules
|
|
{
|
|
public UnrealPakTarget(TargetInfo Target) : base(Target)
|
|
{
|
|
Type = TargetType.Program;
|
|
LinkType = TargetLinkType.Modular;
|
|
IncludeOrderVersion = EngineIncludeOrderVersion.Latest;
|
|
LaunchModuleName = "UnrealPak";
|
|
|
|
bUseXGEController = false;
|
|
bCompileFreeType = false;
|
|
bLoggingToMemoryEnabled = false;
|
|
bUseLoggingInShipping = true;
|
|
bCompileWithAccessibilitySupport = false;
|
|
bCompileWithPluginSupport = true;
|
|
bIncludePluginsForTargetPlatforms = true;
|
|
bWithServerCode = false;
|
|
bCompileNavmeshClusterLinks = false;
|
|
bCompileNavmeshSegmentLinks = false;
|
|
bCompileRecast = false;
|
|
bCompileICU = false;
|
|
bWithLiveCoding = false;
|
|
bBuildDeveloperTools = false;
|
|
bBuildWithEditorOnlyData = true;
|
|
bCompileAgainstEngine = false;
|
|
bCompileAgainstCoreUObject = true;
|
|
bCompileAgainstApplicationCore = true;
|
|
bUsesSlate = false;
|
|
bIsBuildingConsoleApplication = true;
|
|
|
|
WindowsPlatform.bUseBundledDbgHelp = false;
|
|
WindowsPlatform.bPixProfilingEnabled = false;
|
|
WindowsPlatform.bMergeIdenticalCOMDATs = true;
|
|
WindowsPlatform.bStripUnreferencedSymbols = true;
|
|
|
|
GlobalDefinitions.Add("UE_TRACE_ENABLED=1");
|
|
GlobalDefinitions.Add("UE_EXTERNAL_PROFILING_ENABLED=0");
|
|
}
|
|
}
|