2020-09-24 00:43:27 -04:00
|
|
|
// 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",
|
2023-05-08 15:46:28 -04:00
|
|
|
"InputCore",
|
2020-09-24 00:43:27 -04:00
|
|
|
"KismetCompiler",
|
|
|
|
|
"PropertyEditor",
|
|
|
|
|
"SharedSettingsWidgets",
|
|
|
|
|
"Slate",
|
|
|
|
|
"SlateCore",
|
|
|
|
|
"UnrealEd",
|
2022-03-17 16:10:59 -04:00
|
|
|
"AssetTools",
|
|
|
|
|
"DeveloperSettings",
|
|
|
|
|
"EditorSubsystem",
|
2022-08-19 19:19:14 -04:00
|
|
|
"ToolMenus",
|
|
|
|
|
"ContentBrowser",
|
2022-07-05 13:30:30 -04:00
|
|
|
"SourceControl",
|
2023-06-28 14:17:54 -04:00
|
|
|
"GameplayTags",
|
2020-09-24 00:43:27 -04:00
|
|
|
}
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|