2016-01-07 08:17:16 -05:00
|
|
|
// Copyright 1998-2016 Epic Games, Inc. All Rights Reserved.
|
2014-03-14 14:13:41 -04:00
|
|
|
|
|
|
|
|
namespace UnrealBuildTool.Rules
|
|
|
|
|
{
|
|
|
|
|
public class NetworkFileSystem : ModuleRules
|
|
|
|
|
{
|
|
|
|
|
public NetworkFileSystem(TargetInfo Target)
|
|
|
|
|
{
|
2015-04-21 15:42:57 -04:00
|
|
|
PrivateIncludePaths.AddRange(
|
|
|
|
|
new string[] {
|
|
|
|
|
"Runtime/NetworkFileSystem/Private",
|
|
|
|
|
"Runtime/NetworkFileSystem/Private/Simple",
|
|
|
|
|
"Runtime/NetworkFileSystem/Private/Streaming",
|
|
|
|
|
}
|
|
|
|
|
);
|
2014-03-14 14:13:41 -04:00
|
|
|
|
2015-04-21 15:42:57 -04:00
|
|
|
PrivateDependencyModuleNames.AddRange(
|
|
|
|
|
new string[]
|
|
|
|
|
{
|
|
|
|
|
"CoreUObject",
|
|
|
|
|
"Projects",
|
|
|
|
|
"SandboxFile",
|
|
|
|
|
"TargetPlatform",
|
|
|
|
|
}
|
|
|
|
|
);
|
2014-03-14 14:13:41 -04:00
|
|
|
|
2015-04-21 15:42:57 -04:00
|
|
|
PublicIncludePaths.AddRange(
|
|
|
|
|
new string[] {
|
|
|
|
|
"Runtime/NetworkFileSystem/Public",
|
|
|
|
|
"Runtime/NetworkFileSystem/Public/Interfaces",
|
|
|
|
|
"Runtime/CoreUObject/Public/Interfaces",
|
|
|
|
|
}
|
|
|
|
|
);
|
2014-03-14 14:13:41 -04:00
|
|
|
|
2015-04-21 15:42:57 -04:00
|
|
|
PublicDependencyModuleNames.AddRange(
|
|
|
|
|
new string[]
|
|
|
|
|
{
|
|
|
|
|
"Core",
|
|
|
|
|
"Sockets",
|
|
|
|
|
}
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
if (Target.Platform == UnrealTargetPlatform.Win64 || Target.Platform == UnrealTargetPlatform.Mac)
|
|
|
|
|
{
|
2016-09-23 17:31:51 -04:00
|
|
|
AddEngineThirdPartyPrivateStaticDependencies(Target, "OpenSSL", "libWebSockets", "zlib");
|
2015-04-21 15:42:57 -04:00
|
|
|
Definitions.Add("ENABLE_HTTP_FOR_NFS=1");
|
|
|
|
|
}
|
2016-01-07 11:21:22 -05:00
|
|
|
|
|
|
|
|
PrecompileForTargets = PrecompileTargetsType.None;
|
|
|
|
|
}
|
2014-03-14 14:13:41 -04:00
|
|
|
}
|
|
|
|
|
}
|