Files
UnrealEngineUWP/Engine/Source/Programs/ReplicationSystemLowLevelTests/ReplicationSystemLowLevelTests.Build.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

31 lines
591 B
C#

// Copyright Epic Games, Inc. All Rights Reserved.
using UnrealBuildTool;
public class ReplicationSystemLowLevelTests : TestModuleRules
{
public ReplicationSystemLowLevelTests(ReadOnlyTargetRules Target) : base(Target)
{
PrivateDependencyModuleNames.AddRange(
new string[]
{
"Core",
"CoreUObject",
"IrisCore",
"ReplicationSystemTestPlugin",
}
);
PrivateIncludePathModuleNames.AddRange(
new string[]
{
"Engine",
"RHI",
"SlateCore"
}
);
UpdateBuildGraphPropertiesFile(new Metadata("ReplicationSystem", "Replication System"));
}
}