Files
UnrealEngineUWP/Engine/Source/Editor/MaterialEditor/MaterialEditor.Build.cs
Chris Gagnon 74b41289a2 Fix for substance tutorial not showing up.
#jira UE-78585
#rb Matt.Kuhlenschmidt

[CL 8009811 by Chris Gagnon in 4.23 branch]
2019-08-13 16:44:06 -04:00

60 lines
1.1 KiB
C#

// Copyright 1998-2019 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",
"MainFrame",
}
);
DynamicallyLoadedModuleNames.AddRange(
new string[] {
"AssetTools",
"SceneOutliner",
"ClassViewer",
"ContentBrowser",
"WorkspaceMenuStructure"
}
);
}
}