You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
- Fixed a crash when HttpCacheStore is used without DesktopPlatform. - Fixed GetOidcAccessToken and GetOidcTokenStatus failing for targets with no Intermediate directory. - Added DesktopPlatform to DerivedDataTool to allow it to use HttpCacheStore with OIDC. #rb Zousar.Shaker [FYI] Dan.Engelbrecht [CL 25072527 by devin doucette in ue5-main branch]
33 lines
996 B
C#
33 lines
996 B
C#
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
using UnrealBuildTool;
|
|
|
|
[SupportedPlatforms(UnrealPlatformClass.Desktop)]
|
|
public class DerivedDataToolTarget : TargetRules
|
|
{
|
|
public DerivedDataToolTarget(TargetInfo Target) : base(Target)
|
|
{
|
|
Type = TargetType.Program;
|
|
IncludeOrderVersion = EngineIncludeOrderVersion.Latest;
|
|
LinkType = TargetLinkType.Monolithic;
|
|
LaunchModuleName = "DerivedDataTool";
|
|
|
|
bBuildDeveloperTools = false;
|
|
bCompileAgainstApplicationCore = true;
|
|
bCompileAgainstCoreUObject = false;
|
|
bCompileAgainstEngine = false;
|
|
bCompileICU = false;
|
|
bForceDisableAutomationTests = true;
|
|
bIsBuildingConsoleApplication = true;
|
|
bUseLoggingInShipping = true;
|
|
|
|
if (Target.Configuration == UnrealTargetConfiguration.Debug ||
|
|
Target.Configuration == UnrealTargetConfiguration.Development)
|
|
{
|
|
GlobalDefinitions.Add("LLM_ENABLED_IN_CONFIG=1");
|
|
GlobalDefinitions.Add("UE_MEMORY_TAGS_TRACE_ENABLED=1");
|
|
GlobalDefinitions.Add("UE_TRACE_ENABLED=1");
|
|
}
|
|
}
|
|
}
|