Files
UnrealEngineUWP/Engine/Source/Runtime/NetworkReplayStreaming/HttpNetworkReplayStreaming/HttpNetworkReplayStreaming.Build.cs

24 lines
527 B
C#
Raw Normal View History

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