Files
UnrealEngineUWP/Engine/Source/Programs/ReplicationSystemTest/ReplicationSystemTest.Build.cs
Andriy Tylychko 0ee6fe96bf Renamed "TaskGraph" module to "ProfileVisualizer"
#rb ionut.matasaru
#preflight 639723c59549ddaa285724f3

[CL 23476968 by Andriy Tylychko in ue5-main branch]
2022-12-12 08:20:32 -05:00

47 lines
972 B
C#

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