Files
UnrealEngineUWP/Engine/Source/Editor/PropertyEditor/PropertyEditor.Build.cs
george rolfe 87489cdd8b [PropertyEditor] Added UToolMenu extensibility to PropertyEditor context menu
#jira UE-197415
#rb karen.jirak

[CL 29743000 by george rolfe in ue5-main branch]
2023-11-15 06:54:35 -05:00

66 lines
1.2 KiB
C#

// Copyright Epic Games, Inc. All Rights Reserved.
using UnrealBuildTool;
public class PropertyEditor : ModuleRules
{
public PropertyEditor(ReadOnlyTargetRules Target) : base(Target)
{
PublicDependencyModuleNames.AddRange(
new string[] {
"EditorConfig",
"EditorFramework",
"UnrealEd",
"ActorPickerMode",
"SceneDepthPickerMode",
}
);
PrivateIncludePathModuleNames.AddRange(
new string[] {
"MainFrame",
"AssetRegistry",
"AssetTools",
"ClassViewer",
"StructViewer",
"ContentBrowser",
}
);
PrivateDependencyModuleNames.AddRange(
new string[] {
"AppFramework",
"Core",
"CoreUObject",
"ApplicationCore",
"EditorStyle",
"Engine",
"InputCore",
"Slate",
"SlateCore",
"EditorWidgets",
"Documentation",
"ConfigEditor",
"SceneOutliner",
"DesktopPlatform",
"PropertyPath",
"ToolWidgets",
"WidgetRegistration",
"Json",
"ToolMenus"
}
);
DynamicallyLoadedModuleNames.AddRange(
new string[] {
"AssetRegistry",
"AssetTools",
"ClassViewer",
"StructViewer",
"ContentBrowser",
"MainFrame",
}
);
}
}