Files
UnrealEngineUWP/Engine/Plugins/Runtime/ReplicationGraph/Source/ReplicationGraph.Build.cs
brandon schaefer d1becd40a2 Remove the now deleted option to EnableAutoRTFM, this is default and now youve to explicitly disable it for a module
#rb neil.henning

[CL 34015057 by brandon schaefer in ue5-main branch]
2024-05-30 18:00:50 -04:00

25 lines
461 B
C#

// Copyright Epic Games, Inc. All Rights Reserved.
using UnrealBuildTool;
public class ReplicationGraph : ModuleRules
{
public ReplicationGraph(ReadOnlyTargetRules Target) : base(Target)
{
PrivateDependencyModuleNames.AddRange(
new string[] {
"Core",
"CoreUObject",
"NetCore",
"Engine",
"EngineSettings",
"PerfCounters"
}
);
UnsafeTypeCastWarningLevel = WarningLevel.Error;
SetupGameplayDebuggerSupport(Target);
}
}