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]
17 lines
500 B
C#
17 lines
500 B
C#
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
using UnrealBuildTool;
|
|
|
|
public class DerivedDataTool : ModuleRules
|
|
{
|
|
public DerivedDataTool(ReadOnlyTargetRules Target) : base(Target)
|
|
{
|
|
PublicIncludePathModuleNames.Add("Launch");
|
|
PrivateDependencyModuleNames.Add("ApplicationCore");
|
|
PrivateDependencyModuleNames.Add("Core");
|
|
PrivateDependencyModuleNames.Add("DerivedDataCache");
|
|
PrivateDependencyModuleNames.Add("DesktopPlatform");
|
|
PrivateDependencyModuleNames.Add("Projects");
|
|
}
|
|
}
|