Files
UnrealEngine/Engine/Source/Programs/ReplicationSystemLowLevelTests/ReplicationSystemLowLevelTests.Build.cs
2025-05-18 13:04:45 +08:00

44 lines
975 B
C#

// Copyright Epic Games, Inc. All Rights Reserved.
using UnrealBuildTool;
public class ReplicationSystemLowLevelTests : TestModuleRules
{
static ReplicationSystemLowLevelTests()
{
if (InTestMode)
{
TestMetadata = new Metadata();
TestMetadata.TestName = "ReplicationSystem";
TestMetadata.TestShortName = "Replication System";
TestMetadata.SupportedPlatforms.Add(UnrealTargetPlatform.Linux);
TestMetadata.SupportedPlatforms.Add(UnrealTargetPlatform.LinuxArm64);
TestMetadata.PlatformRunContainerized.Add(UnrealTargetPlatform.LinuxArm64, true);
}
}
public ReplicationSystemLowLevelTests(ReadOnlyTargetRules Target) : base(Target)
{
PrivateDependencyModuleNames.AddRange(
new string[]
{
"Core",
"CoreUObject",
"IrisCore",
"ReplicationSystemTestPlugin",
}
);
PrivateIncludePathModuleNames.AddRange(
new string[]
{
"Engine",
"RHI",
"SlateCore",
"InputCore",
"ApplicationCore"
}
);
}
}