Files
UnrealEngineUWP/Engine/Plugins/EnhancedInput/Source/InputEditor/InputEditor.Build.cs
ben hoffman ade7c26f12 Remove dependency on InputBlueprintNodes from the InputEditor Module.
The Input Editor module has several features that are using the K2Nodes from enhanced input when it doesnt need to. The Blueprint Node logic should be kept in its own module.

This will allow the K2Nodes to actually read from editor settings and preferences in the rest of enhanced input, which would otherwise cause a circular depedency in the build graph.

This change is really just moving some functions from one module to another, neither module is publically exposed so no deprecation is required.

#rb trivial
#rnx
#preflight 645914ab4c3ec54e6e1070ec

[CL 25375925 by ben hoffman in ue5-main branch]
2023-05-08 15:46:28 -04:00

40 lines
975 B
C#

// Copyright Epic Games, Inc. All Rights Reserved.
namespace UnrealBuildTool.Rules
{
public class InputEditor : ModuleRules
{
public InputEditor(ReadOnlyTargetRules Target) : base(Target)
{
PublicDependencyModuleNames.AddRange(
new string[] {
"EnhancedInput",
}
);
PrivateDependencyModuleNames.AddRange(
new string[] {
"BlueprintGraph",
"Core",
"CoreUObject",
"DetailCustomizations",
"Engine",
"GraphEditor",
"InputCore",
"KismetCompiler",
"PropertyEditor",
"SharedSettingsWidgets",
"Slate",
"SlateCore",
"UnrealEd",
"AssetTools",
"DeveloperSettings",
"EditorSubsystem",
"ToolMenus",
"ContentBrowser",
"SourceControl",
}
);
}
}
}