You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
30 lines
850 B
C#
30 lines
850 B
C#
// Copyright 1998-2019 Epic Games, Inc. All Rights Reserved.
|
|
|
|
namespace UnrealBuildTool.Rules
|
|
{
|
|
public class HttpNetworkReplayStreaming : ModuleRules
|
|
{
|
|
public HttpNetworkReplayStreaming(ReadOnlyTargetRules Target) : base(Target)
|
|
{
|
|
ShortName = "HttpReplayStreaming";
|
|
|
|
PrivateDependencyModuleNames.AddRange(
|
|
new string[]
|
|
{
|
|
"Core",
|
|
"CoreUObject",
|
|
"Engine",
|
|
"HTTP",
|
|
"NetworkReplayStreaming",
|
|
"Json",
|
|
} );
|
|
|
|
if (Target.Platform == UnrealTargetPlatform.Win64 || Target.Platform == UnrealTargetPlatform.Mac)
|
|
{
|
|
AddEngineThirdPartyPrivateStaticDependencies(Target,"libWebSockets");
|
|
AddEngineThirdPartyPrivateStaticDependencies(Target,"zlib");
|
|
}
|
|
}
|
|
}
|
|
}
|