Files
UnrealEngineUWP/Engine/Source/Programs/WebTests/WebTests.Build.cs
RiotJoshuaGlazer 70b5e2b144 PR #10520: Fix issues with non blocking sockets in SocketBSD preventing http server from serving large files on linux
#jira UE-188438
[REVIEW] [at]michael.kirzinger [at]michael.atchison
#rb jon.fairchild, Ryan.Gerleve
#tests Reproduced and fixed it in WebTests project by a test case.

[CL 30298475 by RiotJoshuaGlazer in ue5-main branch]
2023-12-13 13:40:37 -05:00

28 lines
481 B
C#

// Copyright Epic Games, Inc. All Rights Reserved.
using UnrealBuildTool;
public class WebTests : TestModuleRules
{
public WebTests(ReadOnlyTargetRules Target) : base(Target)
{
PrivateDependencyModuleNames.AddRange(
new string[] {
"ApplicationCore",
"Core",
"HTTP",
"HTTPServer",
"WebSockets",
"Json"
});
UpdateBuildGraphPropertiesFile(new Metadata() {
TestName = "Web",
TestShortName = "Web",
ReportType = "xml",
});
}
}