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

37 lines
783 B
C#

// Copyright Epic Games, Inc. All Rights Reserved.
using UnrealBuildTool;
public class ReplicationSystemTest : ModuleRules
{
public ReplicationSystemTest(ReadOnlyTargetRules Target) : base(Target)
{
PublicIncludePathModuleNames.Add("Launch");
PrivateIncludePathModuleNames.Add("DerivedDataCache");
PrivateDependencyModuleNames.AddRange(
new string[]
{
"ApplicationCore",
"AutomationController",
"AutomationWorker",
"Core",
"Projects",
"Engine",
"HeadMountedDisplay",
"InstallBundleManager",
"MediaUtils",
"MRMesh",
"MoviePlayer",
"MoviePlayerProxy",
"PreLoadScreen",
"ReplicationSystemTestPlugin",
"SessionServices",
"SlateNullRenderer",
"SlateRHIRenderer",
"ProfileVisualizer",
}
);
}
}