2022-07-13 03:11:55 -04:00
|
|
|
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
|
|
|
|
|
|
using UnrealBuildTool;
|
|
|
|
|
|
|
|
|
|
public class ReplicationSystemTest : ModuleRules
|
|
|
|
|
{
|
|
|
|
|
public ReplicationSystemTest(ReadOnlyTargetRules Target) : base(Target)
|
|
|
|
|
{
|
2023-02-20 17:39:13 -05:00
|
|
|
PublicIncludePathModuleNames.Add("Launch");
|
|
|
|
|
PrivateIncludePathModuleNames.Add("DerivedDataCache");
|
2022-07-13 11:33:48 -04:00
|
|
|
|
2022-07-13 03:11:55 -04:00
|
|
|
PrivateDependencyModuleNames.AddRange(
|
|
|
|
|
new string[]
|
|
|
|
|
{
|
2024-09-18 08:25:56 -04:00
|
|
|
"ApplicationCore",
|
|
|
|
|
"AutomationController",
|
|
|
|
|
"AutomationWorker",
|
|
|
|
|
"Core",
|
2022-07-13 03:11:55 -04:00
|
|
|
"Projects",
|
|
|
|
|
"Engine",
|
|
|
|
|
"HeadMountedDisplay",
|
|
|
|
|
"InstallBundleManager",
|
2024-09-18 08:25:56 -04:00
|
|
|
"MediaUtils",
|
2022-07-13 03:11:55 -04:00
|
|
|
"MRMesh",
|
|
|
|
|
"MoviePlayer",
|
|
|
|
|
"MoviePlayerProxy",
|
|
|
|
|
"PreLoadScreen",
|
|
|
|
|
"ReplicationSystemTestPlugin",
|
|
|
|
|
"SessionServices",
|
|
|
|
|
"SlateNullRenderer",
|
|
|
|
|
"SlateRHIRenderer",
|
2022-12-12 08:20:32 -05:00
|
|
|
"ProfileVisualizer",
|
2024-09-18 08:25:56 -04:00
|
|
|
}
|
2022-07-13 03:11:55 -04:00
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
}
|