You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
#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]
28 lines
481 B
C#
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",
|
|
});
|
|
}
|
|
}
|
|
|
|
|