You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
27 lines
640 B
C#
27 lines
640 B
C#
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
using UnrealBuildTool;
|
|
|
|
[SupportedPlatforms(UnrealPlatformClass.All)]
|
|
public class ReplicationSystemLowLevelTestsTarget : TestTargetRules
|
|
{
|
|
public ReplicationSystemLowLevelTestsTarget(TargetInfo Target) : base(Target)
|
|
{
|
|
bCompileAgainstEngine = true;
|
|
bCompileAgainstApplicationCore = true;
|
|
bUsesSlate = false;
|
|
|
|
bUsePlatformFileStub = true;
|
|
bMockEngineDefaults = true;
|
|
|
|
IncludeOrderVersion = EngineIncludeOrderVersion.Latest;
|
|
|
|
// Network config
|
|
bWithPushModel = true;
|
|
bUseIris = true;
|
|
|
|
bEnableTrace = true;
|
|
GlobalDefinitions.Add("UE_NET_TEST_FAKE_REP_TAGS=1");
|
|
}
|
|
}
|