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;
|
|
|
|
|
|
2023-08-10 17:10:14 -04:00
|
|
|
bEnableTrace = true;
|
2023-04-26 12:32:59 -04:00
|
|
|
GlobalDefinitions.Add("UE_NET_TEST_FAKE_REP_TAGS=1");
|
2024-06-03 09:22:15 -04:00
|
|
|
// Load time profiling brings object construction to a crawl.
|
|
|
|
|
GlobalDefinitions.Add("LOADTIMEPROFILERTRACE_ENABLED=0");
|
2023-02-22 15:28:31 -05:00
|
|
|
}
|
|
|
|
|
}
|