Files
UnrealEngineUWP/Engine/Source/Runtime/NetworkFileSystem/NetworkFileSystem.Build.cs
joe kirchoff d5a5a356b9 Remove unnecessary Public and Private entries for the current module being added to PublicIncludePaths or PrivateIncludePaths
#rnx
#jira UE-177808
#preflight 63f3fb8c90198dffba00cc27

[CL 24331758 by joe kirchoff in ue5-main branch]
2023-02-20 20:22:44 -05:00

44 lines
996 B
C#

// Copyright Epic Games, Inc. All Rights Reserved.
namespace UnrealBuildTool.Rules
{
public class NetworkFileSystem : ModuleRules
{
public NetworkFileSystem(ReadOnlyTargetRules Target) : base(Target)
{
PrivateDependencyModuleNames.AddRange(
new string[]
{
"CoreUObject",
"Engine",
"Projects",
"SandboxFile",
"TargetPlatform",
"DesktopPlatform",
"CookOnTheFly",
"CookOnTheFlyNetServer"
});
PublicDependencyModuleNames.AddRange(
new string[] {
"Core",
"Sockets",
});
if ((Target.Platform == UnrealTargetPlatform.Win64) ||
(Target.Platform == UnrealTargetPlatform.Mac))
{
AddEngineThirdPartyPrivateStaticDependencies(Target, "OpenSSL", "libWebSockets", "zlib");
PublicDefinitions.Add("ENABLE_HTTP_FOR_NFS=1");
PrivateDependencyModuleNames.Add("SSL");
}
else
{
PublicDefinitions.Add("ENABLE_HTTP_FOR_NFS=0");
}
PrecompileForTargets = PrecompileTargetsType.Editor;
}
}
}