You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
45 lines
886 B
C#
45 lines
886 B
C#
|
|
// Copyright 1998-2014 Epic Games, Inc. All Rights Reserved.
|
||
|
|
|
||
|
|
namespace UnrealBuildTool.Rules
|
||
|
|
{
|
||
|
|
public class NetworkFileSystem : ModuleRules
|
||
|
|
{
|
||
|
|
public NetworkFileSystem(TargetInfo Target)
|
||
|
|
{
|
||
|
|
PrivateIncludePaths.AddRange(
|
||
|
|
new string[] {
|
||
|
|
"Runtime/NetworkFileSystem/Private",
|
||
|
|
"Runtime/NetworkFileSystem/Private/Simple",
|
||
|
|
"Runtime/NetworkFileSystem/Private/Streaming",
|
||
|
|
}
|
||
|
|
);
|
||
|
|
|
||
|
|
PrivateDependencyModuleNames.AddRange(
|
||
|
|
new string[]
|
||
|
|
{
|
||
|
|
"CoreUObject",
|
||
|
|
"Projects",
|
||
|
|
"SandboxFile",
|
||
|
|
"TargetPlatform",
|
||
|
|
}
|
||
|
|
);
|
||
|
|
|
||
|
|
PublicIncludePaths.AddRange(
|
||
|
|
new string[] {
|
||
|
|
"Runtime/NetworkFileSystem/Public",
|
||
|
|
"Runtime/NetworkFileSystem/Public/Interfaces",
|
||
|
|
"Runtime/CoreUObject/Public/Interfaces",
|
||
|
|
}
|
||
|
|
);
|
||
|
|
|
||
|
|
PublicDependencyModuleNames.AddRange(
|
||
|
|
new string[]
|
||
|
|
{
|
||
|
|
"Core",
|
||
|
|
"Sockets",
|
||
|
|
}
|
||
|
|
);
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|