2021-09-28 13:33:17 -04:00
|
|
|
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
|
|
|
|
|
|
namespace UnrealBuildTool.Rules
|
|
|
|
|
{
|
|
|
|
|
public class ZoneGraphDebug : ModuleRules
|
|
|
|
|
{
|
|
|
|
|
public ZoneGraphDebug(ReadOnlyTargetRules Target) : base(Target)
|
|
|
|
|
{
|
|
|
|
|
PCHUsage = ModuleRules.PCHUsageMode.UseExplicitOrSharedPCHs;
|
|
|
|
|
|
2024-03-21 09:44:11 -04:00
|
|
|
UnsafeTypeCastWarningLevel = WarningLevel.Warning;
|
|
|
|
|
|
2021-09-28 13:33:17 -04:00
|
|
|
PublicDependencyModuleNames.AddRange(
|
|
|
|
|
new string[] {
|
|
|
|
|
"Core",
|
|
|
|
|
"CoreUObject",
|
|
|
|
|
"Engine",
|
|
|
|
|
"GameplayTags",
|
|
|
|
|
"GameplayTasks",
|
|
|
|
|
"AIModule",
|
|
|
|
|
"ZoneGraph"
|
|
|
|
|
}
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
if (Target.bBuildEditor == true)
|
|
|
|
|
{
|
|
|
|
|
PrivateDependencyModuleNames.Add("EditorFramework");
|
|
|
|
|
PrivateDependencyModuleNames.Add("UnrealEd");
|
|
|
|
|
}
|
|
|
|
|
|
2022-07-17 22:41:36 -04:00
|
|
|
SetupGameplayDebuggerSupport(Target);
|
2021-09-28 13:33:17 -04:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|