Files
UnrealEngineUWP/Engine/Source/Runtime/NetworkFileSystem/NetworkFileSystem.Build.cs
T

51 lines
1.4 KiB
C#
Raw Normal View History

2014-12-07 19:09:38 -05:00
// Copyright 1998-2015 Epic Games, Inc. All Rights Reserved.
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",
}
);
2015-04-21 15:42:57 -04:00
PrivateDependencyModuleNames.AddRange(
new string[]
{
"CoreUObject",
"Projects",
"SandboxFile",
"TargetPlatform",
}
);
2015-04-21 15:42:57 -04:00
PublicIncludePaths.AddRange(
new string[] {
"Runtime/NetworkFileSystem/Public",
"Runtime/NetworkFileSystem/Public/Interfaces",
"Runtime/CoreUObject/Public/Interfaces",
}
);
2015-04-21 15:42:57 -04:00
PublicDependencyModuleNames.AddRange(
new string[]
{
"Core",
"Sockets",
}
);
if (Target.Platform == UnrealTargetPlatform.Win64 || Target.Platform == UnrealTargetPlatform.Mac)
{
AddThirdPartyPrivateStaticDependencies(Target,"WebSockets");
Definitions.Add("ENABLE_HTTP_FOR_NFS=1");
}
}
}
}