Files
UnrealEngineUWP/Engine/Source/Programs/ReplicationSystemLowLevelTests/ReplicationSystemLowLevelTests.Build.cs
chris constantinescu e003cfd4a1 Use Gauntlet to run low level tests instead of BG's Spawn, move LowLevelTests.xml to public folder and remove all restricted platform names
#rb Jerome.Delattre
#preflight 6452abfd4d593c0b422b5d9e

[CL 25335483 by chris constantinescu in ue5-main branch]
2023-05-04 11:05:46 -04:00

33 lines
663 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() { TestName = "ReplicationSystem", TestShortName = "Replication System" });
}
}