Files
UnrealEngineUWP/Engine/Source/Editor/MaterialEditor/MaterialEditor.Build.cs
bryan sefcik 0a3a232b0f Misc module file cleanup.
#jira
#preflight 634f4929864d9be23657bbf0

[CL 22634555 by bryan sefcik in ue5-main branch]
2022-10-19 15:07:57 -04:00

63 lines
1.2 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[] {
System.IO.Path.Combine(GetModuleDirectory("GraphEditor"), "Private"),
}
);
PrivateIncludePathModuleNames.AddRange(
new string[]
{
"AssetRegistry",
"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",
}
);
DynamicallyLoadedModuleNames.AddRange(
new string[] {
"AssetTools",
"SceneOutliner",
"ClassViewer",
"ContentBrowser",
"WorkspaceMenuStructure"
}
);
}
}