Files
UnrealEngineUWP/Engine/Source/Programs/NetworkPredictionTests/NetworkPredictionTests.Target.cs
robert seiver 9cc9a83fd0 Fix modules with mismatched platform support attributes in corresponding .Target.cs and .Build.cs files.
#jira UE-184896
#review @Josh.Adams
#fyi Leigh.Mcrae, Bryan.Sefcikc, Chris.Constantinescu
#preflight none

[CL 25586936 by robert seiver in ue5-main branch]
2023-05-23 14:05:45 -04:00

20 lines
472 B
C#

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