2021-04-30 08:14:54 -04:00
|
|
|
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
|
|
|
|
|
|
using UnrealBuildTool;
|
|
|
|
|
using System.IO;
|
|
|
|
|
|
|
|
|
|
public class Virtualization : ModuleRules
|
|
|
|
|
{
|
|
|
|
|
public Virtualization(ReadOnlyTargetRules Target) : base(Target)
|
|
|
|
|
{
|
2022-08-29 14:44:54 -04:00
|
|
|
PrivateDependencyModuleNames.AddRange(
|
|
|
|
|
new string[]
|
|
|
|
|
{
|
|
|
|
|
"Core",
|
|
|
|
|
"CoreUObject",
|
|
|
|
|
"ApplicationCore",
|
|
|
|
|
"DerivedDataCache",
|
|
|
|
|
"MessageLog",
|
|
|
|
|
"Projects",
|
|
|
|
|
"SourceControl"
|
|
|
|
|
});
|
2021-09-03 02:55:32 -04:00
|
|
|
|
2022-08-29 14:44:54 -04:00
|
|
|
// The dependencies below this point are for FHttpBackend
|
|
|
|
|
// and can be removed when it is removed
|
2022-01-18 04:50:38 -05:00
|
|
|
PrivateDependencyModuleNames.AddRange(new string[] { "SSL", "Json" });
|
2021-04-30 08:14:54 -04:00
|
|
|
|
|
|
|
|
AddEngineThirdPartyPrivateStaticDependencies(Target, "libcurl");
|
|
|
|
|
AddEngineThirdPartyPrivateStaticDependencies(Target, "OpenSSL");
|
|
|
|
|
}
|
|
|
|
|
}
|