You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
#rb dave.jones2 #ushell-cherrypick of 27593453 by kristof.morva1 [CL 27597870 by ben hoffman in ue5-main branch]
60 lines
1.1 KiB
C#
60 lines
1.1 KiB
C#
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
using UnrealBuildTool;
|
|
|
|
public class GraphEditor : ModuleRules
|
|
{
|
|
public GraphEditor(ReadOnlyTargetRules Target) : base(Target)
|
|
{
|
|
PublicIncludePathModuleNames.AddRange(
|
|
new string[] {
|
|
"ClassViewer",
|
|
"StructViewer",
|
|
}
|
|
);
|
|
|
|
PrivateDependencyModuleNames.AddRange(
|
|
new string[] {
|
|
"AppFramework",
|
|
"Core",
|
|
"CoreUObject",
|
|
"Engine",
|
|
"InputCore",
|
|
"Slate",
|
|
"SlateCore",
|
|
|
|
"EditorWidgets",
|
|
"EditorFramework",
|
|
"UnrealEd",
|
|
"AssetRegistry",
|
|
"Kismet",
|
|
"KismetCompiler",
|
|
"KismetWidgets",
|
|
"BlueprintGraph",
|
|
"Documentation",
|
|
"Persona",
|
|
"PropertyEditor",
|
|
"RenderCore",
|
|
"RHI",
|
|
"ToolMenus",
|
|
"ToolWidgets",
|
|
}
|
|
);
|
|
|
|
DynamicallyLoadedModuleNames.AddRange(
|
|
new string[] {
|
|
"ContentBrowser",
|
|
"ClassViewer",
|
|
"StructViewer",
|
|
}
|
|
);
|
|
|
|
// Circular references that need to be cleaned up
|
|
CircularlyReferencedDependentModules.AddRange(
|
|
new string[] {
|
|
"Kismet"
|
|
}
|
|
);
|
|
}
|
|
}
|