Files
UnrealEngineUWP/Engine/Source/Developer/DerivedDataCache/DerivedDataCache.Build.cs
mark lintott 8bad2c0365 Removed the callback system from core Analytics system. Fixed up analytics gathering in DerivedDataCache, Virtualization and HttpCacheStore
#rb wes.hunt
#preflight 63be95bd68068a8bd6a4438e

[CL 23651011 by mark lintott in ue5-main branch]
2023-01-11 14:28:01 -05:00

26 lines
909 B
C#

// Copyright Epic Games, Inc. All Rights Reserved.
using UnrealBuildTool;
using System.IO;
public class DerivedDataCache : ModuleRules
{
public DerivedDataCache(ReadOnlyTargetRules Target) : base(Target)
{
PrivateDependencyModuleNames.Add("Core");
PrivateDependencyModuleNames.Add("Zen");
// Dependencies for "S3" and "HTTP" backends
PrivateDependencyModuleNames.AddRange(new string[] { "SSL", "Json", "Zen" });
PrivateIncludePathModuleNames.AddRange(new string[] { "DesktopPlatform", "Zen", "Analytics" });
AddEngineThirdPartyPrivateStaticDependencies(Target, "libcurl");
AddEngineThirdPartyPrivateStaticDependencies(Target, "OpenSSL");
// Platform-specific opt-in
PrivateDefinitions.Add($"WITH_HTTP_DDC_BACKEND=1");
PrivateDefinitions.Add($"WITH_S3_DDC_BACKEND={(Target.Platform == UnrealTargetPlatform.Win64 ? 1 : 0)}");
UnsafeTypeCastWarningLevel = WarningLevel.Error;
}
}