Files
UnrealEngineUWP/Engine/Source/Editor/PropertyEditor/PropertyEditor.Build.cs
bryan sefcik ecd9fa8a99 Removed dependencies that aren't needed by the modules that declare them. This is to help fix bad circular dependencies in the engine.
#preflight 647b5f919c5bac5c6f8be490
#jira

[CL 25782459 by bryan sefcik in ue5-main branch]
2023-06-03 15:25:01 -04:00

64 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",
"Json"
}
);
DynamicallyLoadedModuleNames.AddRange(
new string[] {
"AssetRegistry",
"AssetTools",
"ClassViewer",
"StructViewer",
"ContentBrowser",
"MainFrame",
}
);
}
}