Files
UnrealEngineUWP/Engine/Source/Programs/ReplicationSystemLowLevelTests/ReplicationSystemLowLevelTests.Build.cs
Ryan Gerleve db8f9a9210 Replication system tests: suppress some engine warnings during initialization that are unrelated to the replication tests.
#jira UE-178241, UE-178706
#rb chris.constantinescu
#preflight 63ff9828a134e0b05918d334

[CL 24466870 by Ryan Gerleve in ue5-main branch]
2023-03-01 13:40:10 -05:00

33 lines
631 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",
"InputCore",
"ApplicationCore"
}
);
UpdateBuildGraphPropertiesFile(new Metadata("ReplicationSystem", "Replication System"));
}
}