Files
UnrealEngineUWP/Engine/Source/Programs/ReplicationSystemLowLevelTests/ReplicationSystemLowLevelTests.Target.cs
Ryan Gerleve fe1af6fb91 Add ReplicationSystemLowLevelTests program that runs the tests in ReplicationSystemTestPlugin within the low-level tests framework.
#jira UE-166991
#preflight 63f6731fff5afbbb03cc67ed
#rb peter.engstrom, chris.constantinescu

[CL 24368012 by Ryan Gerleve in ue5-main branch]
2023-02-22 15:28:31 -05:00

22 lines
505 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;
bUsesSlate = false;
IncludeOrderVersion = EngineIncludeOrderVersion.Latest;
// Network config
bWithPushModel = true;
bUseIris = true;
GlobalDefinitions.Add("UE_TRACE_ENABLED=1");
}
}