Files
UnrealEngineUWP/Engine/Source/Programs/WebTests/WebTests.Build.cs
chuck zhu f7d4f8e505 - add webtests on horde
- add server output and server error logs
- link webtests to dashboard

[REVIEW] [at]stephen.ma [at]lorry.li

[CL 27219875 by chuck zhu in ue5-main branch]
2023-08-18 16:48:57 -04:00

28 lines
487 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",
"WebSockets",
"Chaos",
"ChaosUserDataPT"
});
UpdateBuildGraphPropertiesFile(new Metadata() {
TestName = "Web",
TestShortName = "Web",
ReportType = "xml",
});
}
}