Files
UnrealEngineUWP/Engine/Source/Editor/GraphEditor/GraphEditor.Build.cs
Robb Surridge 65a3c1236d Move IntroTutorials to a plugin. Part 1: move code module and clean up references.
#jira 141830
#preflight 6202f3e4bd4f846436f1dfc6
#rb lauren.barnes

[CL 18920903 by Robb Surridge in ue5-main branch]
2022-02-09 13:00:06 -05:00

73 lines
1.5 KiB
C#

// Copyright Epic Games, Inc. All Rights Reserved.
using UnrealBuildTool;
public class GraphEditor : ModuleRules
{
public GraphEditor(ReadOnlyTargetRules Target) : base(Target)
{
PrivateIncludePaths.AddRange(
new string[] {
"Editor/GraphEditor/Private",
"Editor/GraphEditor/Private/KismetNodes",
"Editor/GraphEditor/Private/KismetPins",
"Editor/GraphEditor/Private/MaterialNodes",
"Editor/GraphEditor/Private/MaterialPins",
}
);
PublicIncludePathModuleNames.AddRange(
new string[] {
"ClassViewer",
"StructViewer",
}
);
// PublicDependencyModuleNames.AddRange(
// new string[] {
// "AudioEditor"
// }
// );
PrivateDependencyModuleNames.AddRange(
new string[] {
"AppFramework",
"Core",
"CoreUObject",
"Engine",
"InputCore",
"Slate",
"SlateCore",
"EditorStyle",
"EditorWidgets",
"EditorFramework",
"UnrealEd",
"AssetRegistry",
"Kismet",
"KismetWidgets",
"BlueprintGraph",
"Documentation",
"RenderCore",
"RHI",
"ToolMenus",
"ToolWidgets",
}
);
DynamicallyLoadedModuleNames.AddRange(
new string[] {
"ContentBrowser",
"ClassViewer",
"StructViewer",
}
);
// Circular references that need to be cleaned up
CircularlyReferencedDependentModules.AddRange(
new string[] {
"Kismet"
}
);
}
}