You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
#preflight 6466b319c571db717b33e325 #jira UE-186309 [CL 25536534 by bryan sefcik in ue5-main branch]
19 lines
433 B
C#
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;
|
|
}
|
|
}
|