Files
UnrealEngineUWP/Engine/Source/Programs/NetworkPredictionTests/NetworkPredictionTests.Target.cs
bryan sefcik e989719240 More test fixes.
#preflight 6466b319c571db717b33e325
#jira UE-186309

[CL 25536534 by bryan sefcik in ue5-main branch]
2023-05-18 19:42:02 -04:00

19 lines
433 B
C#

// Copyright Epic Games, Inc. All Rights Reserved.
using UnrealBuildTool;
public class NetworkPredictionTestsTarget : TestTargetRules
{
public NetworkPredictionTestsTarget(TargetInfo Target) : base(Target)
{
bCompileAgainstEngine = true;
bCompileAgainstApplicationCore = true;
bUsesSlate = false;
bUsePlatformFileStub = true;
bMockEngineDefaults = true;
IncludeOrderVersion = EngineIncludeOrderVersion.Latest;
}
}