Files
UnrealEngineUWP/Engine/Source/Runtime/NetworkReplayStreaming/HttpNetworkReplayStreaming/HttpNetworkReplayStreaming.Build.cs
John Pollard 94b727b646 Initial http network replay streaming implementation
[CL 2434154 by John Pollard in Main branch]
2015-02-05 16:06:18 -05:00

23 lines
552 B
C#

// Copyright 1998-2015 Epic Games, Inc. All Rights Reserved.
namespace UnrealBuildTool.Rules
{
public class HttpNetworkReplayStreaming : ModuleRules
{
public HttpNetworkReplayStreaming(TargetInfo Target)
{
PrivateIncludePaths.Add( "Runtime/NetworkReplayStreaming/HttpNetworkReplayStreaming/Private" );
PrivateDependencyModuleNames.AddRange(
new string[]
{
"Core",
"CoreUObject",
"Engine",
"HTTP",
"NetworkReplayStreaming"
});
}
}
}