Files
UnrealEngineUWP/Engine/Source/Editor/MaterialEditor/MaterialEditor.Build.cs
Juan Canada 2ecf4f9708 Merging //UE4/Dev-Main@10877709 to Dev-RenderPlat-Staging(//UE4/Dev-Rendering)
#rnx
#rb none

[CL 10895568 by Juan Canada in Dev-RenderPlat-Staging branch]
2020-01-07 13:45:01 -05:00

61 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[] {
"Editor/MaterialEditor/Private"
}
);
PrivateIncludePathModuleNames.AddRange(
new string[]
{
"AssetRegistry",
"AssetTools",
"Kismet",
"EditorWidgets",
}
);
PrivateDependencyModuleNames.AddRange(
new string[] {
"AppFramework",
"Core",
"CoreUObject",
"ApplicationCore",
"InputCore",
"Engine",
"Slate",
"SlateCore",
"EditorStyle",
"RenderCore",
"RHI",
"MaterialUtilities",
"PropertyEditor",
"UnrealEd",
"GraphEditor",
"AdvancedPreviewScene",
"Projects",
"AssetRegistry",
"ToolMenus",
"MainFrame",
}
);
DynamicallyLoadedModuleNames.AddRange(
new string[] {
"AssetTools",
"SceneOutliner",
"ClassViewer",
"ContentBrowser",
"WorkspaceMenuStructure"
}
);
}
}