2023-02-22 15:28:31 -05:00
|
|
|
// 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",
|
2023-03-01 13:40:10 -05:00
|
|
|
"SlateCore",
|
|
|
|
|
"InputCore",
|
|
|
|
|
"ApplicationCore"
|
2023-02-22 15:28:31 -05:00
|
|
|
}
|
|
|
|
|
);
|
|
|
|
|
|
2023-08-17 16:15:06 -04:00
|
|
|
UpdateBuildGraphPropertiesFile(new Metadata() {
|
|
|
|
|
TestName = "ReplicationSystem",
|
|
|
|
|
TestShortName = "Replication System",
|
2023-09-11 12:55:31 -04:00
|
|
|
SupportedPlatforms = { UnrealTargetPlatform.Win64, UnrealTargetPlatform.Linux, UnrealTargetPlatform.LinuxArm64 },
|
|
|
|
|
PlatformRunContainerized = { { UnrealTargetPlatform.LinuxArm64, true } }
|
2023-08-17 16:15:06 -04:00
|
|
|
});
|
2023-02-22 15:28:31 -05:00
|
|
|
}
|
|
|
|
|
}
|