Files
UnrealEngine/Engine/Source/Editor/MaterialEditor/MaterialEditor.Build.cs
2025-05-18 13:04:45 +08:00

62 lines
1.1 KiB
C#

// Copyright Epic Games, Inc. All Rights Reserved.
using UnrealBuildTool;
public class MaterialEditor : ModuleRules
{
public MaterialEditor(ReadOnlyTargetRules Target) : base(Target)
{
PrivateIncludePaths.AddRange(
new string[] {
}
);
PrivateIncludePathModuleNames.AddRange(
new string[]
{
"AssetTools",
"Kismet",
"EditorWidgets",
"MessageLog",
}
);
PrivateDependencyModuleNames.AddRange(
new string[] {
"AppFramework",
"Core",
"CoreUObject",
"ApplicationCore",
"InputCore",
"Engine",
"Slate",
"SlateCore",
"EditorStyle",
"RenderCore",
"RHI",
"MaterialUtilities",
"PropertyEditor",
"EditorFramework",
"UnrealEd",
"GraphEditor",
"AdvancedPreviewScene",
"Projects",
"AssetRegistry",
"ToolMenus",
"MainFrame",
"Landscape"
}
);
DynamicallyLoadedModuleNames.AddRange(
new string[] {
"AssetTools",
"SceneOutliner",
"ClassViewer",
"ContentBrowser",
"WorkspaceMenuStructure"
}
);
}
}