You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
- Adds "Json" dependency instead #jira UE-198895 [FYI] Lorry.Li [CL 29057908 by stephen ma in ue5-main branch]
27 lines
463 B
C#
27 lines
463 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",
|
|
"Json"
|
|
});
|
|
|
|
UpdateBuildGraphPropertiesFile(new Metadata() {
|
|
TestName = "Web",
|
|
TestShortName = "Web",
|
|
ReportType = "xml",
|
|
});
|
|
}
|
|
}
|
|
|
|
|