You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
#jira UE-184896 #review @Josh.Adams #fyi Leigh.Mcrae, Bryan.Sefcikc, Chris.Constantinescu #preflight none [CL 25586936 by robert seiver in ue5-main branch]
20 lines
472 B
C#
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;
|
|
}
|
|
}
|