Files
UnrealEngineUWP/Engine/Plugins/EnhancedInput/Source/InputBlueprintNodes/InputBlueprintNodes.Build.cs
ben hoffman f67d3f3d13 Move the enhanced input plugin out of Experimental and into the normal /Engine/Plugins folder.
#jira UE-144847
#rb trivial
#preflight 62228bcf2f7d78332e1c4548

[CL 19277106 by ben hoffman in ue5-main branch]
2022-03-04 17:59:01 -05:00

33 lines
762 B
C#

// Copyright Epic Games, Inc. All Rights Reserved.
namespace UnrealBuildTool.Rules
{
public class InputBlueprintNodes : ModuleRules
{
public InputBlueprintNodes(ReadOnlyTargetRules Target) : base(Target)
{
PrivateIncludePaths.AddRange(
new string[] {
"InputBlueprintNodes/Private",
}
);
PrivateDependencyModuleNames.AddRange(
new string[] {
"BlueprintGraph",
"Core",
"CoreUObject",
"Engine",
"EnhancedInput",
"GraphEditor",
"InputCore",
"KismetCompiler",
"PropertyEditor",
"Slate",
"SlateCore",
"UnrealEd",
}
);
}
}
}