You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
#jira UE-144847 #rb trivial #preflight 62228bcf2f7d78332e1c4548 [CL 19277106 by ben hoffman in ue5-main branch]
43 lines
1002 B
C#
43 lines
1002 B
C#
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
namespace UnrealBuildTool.Rules
|
|
{
|
|
public class InputEditor : ModuleRules
|
|
{
|
|
public InputEditor(ReadOnlyTargetRules Target) : base(Target)
|
|
{
|
|
PrivateIncludePaths.AddRange(
|
|
new string[] {
|
|
"InputEditor/Private",
|
|
}
|
|
);
|
|
|
|
PublicDependencyModuleNames.AddRange(
|
|
new string[] {
|
|
"EnhancedInput",
|
|
}
|
|
);
|
|
|
|
PrivateDependencyModuleNames.AddRange(
|
|
new string[] {
|
|
"BlueprintGraph",
|
|
"Core",
|
|
"CoreUObject",
|
|
"DetailCustomizations",
|
|
"EditorStyle",
|
|
"Engine",
|
|
"GraphEditor",
|
|
"InputBlueprintNodes",
|
|
"InputCore",
|
|
"KismetCompiler",
|
|
"PropertyEditor",
|
|
"SharedSettingsWidgets",
|
|
"Slate",
|
|
"SlateCore",
|
|
"UnrealEd",
|
|
"AssetTools"
|
|
}
|
|
);
|
|
}
|
|
}
|
|
} |