Files
UnrealEngine/Engine/Plugins/Runtime/ZoneGraph/Source/ZoneGraphEditor/ZoneGraphEditor.Build.cs
2025-05-18 13:04:45 +08:00

50 lines
835 B
C#

// Copyright Epic Games, Inc. All Rights Reserved.
namespace UnrealBuildTool.Rules
{
public class ZoneGraphEditor : ModuleRules
{
public ZoneGraphEditor(ReadOnlyTargetRules Target) : base(Target)
{
PublicIncludePaths.AddRange(
new string[] {
}
);
PublicDependencyModuleNames.AddRange(
new string[] {
"Core",
"CoreUObject",
"Engine",
"InputCore",
"AssetTools",
"EditorFramework",
"UnrealEd",
"Slate",
"SlateCore",
"LevelEditor",
"PropertyEditor",
"ZoneGraph",
"DetailCustomizations",
"ComponentVisualizers",
}
);
PrivateDependencyModuleNames.AddRange(
new string[] {
"RenderCore",
"GraphEditor",
"KismetWidgets",
"PropertyEditor",
"AIGraph",
"ToolMenus",
"AppFramework",
"Projects",
}
);
}
}
}