You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
This represents UE4/Main @17911760, Release-5.0 @17915875 and Dev-PerfTest @17914035 [CL 17918595 by aurel cordonnier in ue5-release-engine-test branch]
27 lines
846 B
C#
27 lines
846 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"});
|
|
AddEngineThirdPartyPrivateStaticDependencies(Target, "libcurl");
|
|
AddEngineThirdPartyPrivateStaticDependencies(Target, "OpenSSL");
|
|
|
|
// Platform-specific opt-in
|
|
if (Target.Platform == UnrealTargetPlatform.Win64)
|
|
{
|
|
PrivateDefinitions.Add("WITH_HTTP_DDC_BACKEND=1");
|
|
PrivateDefinitions.Add("WITH_S3_DDC_BACKEND=1");
|
|
}
|
|
}
|
|
}
|