Files
UnrealEngineUWP/Engine/Source/Programs/NetworkPredictionTests/NetworkPredictionTests.Build.cs
chris constantinescu e003cfd4a1 Use Gauntlet to run low level tests instead of BG's Spawn, move LowLevelTests.xml to public folder and remove all restricted platform names
#rb Jerome.Delattre
#preflight 6452abfd4d593c0b422b5d9e

[CL 25335483 by chris constantinescu in ue5-main branch]
2023-05-04 11:05:46 -04:00

22 lines
507 B
C#

// Copyright Epic Games, Inc. All Rights Reserved.
using UnrealBuildTool;
[SupportedPlatforms("Win64", "Linux")]
public class NetworkPredictionTests : TestModuleRules
{
public NetworkPredictionTests(ReadOnlyTargetRules Target) : base(Target)
{
PrivateDependencyModuleNames.AddRange(
new string[]
{
"Core",
"CoreUObject",
"NetworkPrediction",
}
);
UpdateBuildGraphPropertiesFile(new Metadata() { TestName = "NetworkPredictionPlugin", TestShortName = "Net Prediction" });
}
}