2023-02-22 15:28:31 -05:00
|
|
|
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
|
|
|
|
|
|
using UnrealBuildTool;
|
|
|
|
|
|
|
|
|
|
[SupportedPlatforms(UnrealPlatformClass.All)]
|
|
|
|
|
public class ReplicationSystemLowLevelTestsTarget : TestTargetRules
|
|
|
|
|
{
|
|
|
|
|
public ReplicationSystemLowLevelTestsTarget(TargetInfo Target) : base(Target)
|
|
|
|
|
{
|
|
|
|
|
bCompileAgainstEngine = true;
|
2023-05-18 19:42:02 -04:00
|
|
|
bCompileAgainstApplicationCore = true;
|
2023-02-22 15:28:31 -05:00
|
|
|
bUsesSlate = false;
|
|
|
|
|
|
2023-02-24 15:27:37 -05:00
|
|
|
bUsePlatformFileStub = true;
|
|
|
|
|
bMockEngineDefaults = true;
|
|
|
|
|
|
2023-02-22 15:28:31 -05:00
|
|
|
IncludeOrderVersion = EngineIncludeOrderVersion.Latest;
|
|
|
|
|
|
|
|
|
|
// Network config
|
|
|
|
|
bWithPushModel = true;
|
|
|
|
|
bUseIris = true;
|
|
|
|
|
|
|
|
|
|
GlobalDefinitions.Add("UE_TRACE_ENABLED=1");
|
2023-04-26 12:32:59 -04:00
|
|
|
GlobalDefinitions.Add("UE_NET_TEST_FAKE_REP_TAGS=1");
|
2023-02-22 15:28:31 -05:00
|
|
|
}
|
|
|
|
|
}
|