Files
UnrealEngineUWP/Engine/Source/Editor/FontEditor/FontEditor.Build.cs
zach bethel 790cad3713 Fixed up modules to include rendercore to work around linker error in FViewport.
[CL 25851045 by zach bethel in ue5-main branch]
2023-06-07 13:46:24 -04:00

44 lines
782 B
C#

// Copyright Epic Games, Inc. All Rights Reserved.
using UnrealBuildTool;
public class FontEditor : ModuleRules
{
public FontEditor(ReadOnlyTargetRules Target) : base(Target)
{
PrivateDependencyModuleNames.AddRange(
new string[] {
"AppFramework",
"AssetRegistry",
"Core",
"CoreUObject",
"ContentBrowser",
"DesktopPlatform",
"DesktopWidgets",
"Engine",
"InputCore",
"RenderCore",
"Slate",
"SlateCore",
"UnrealEd",
"PropertyEditor",
"EditorStyle",
}
);
PrivateIncludePathModuleNames.AddRange(
new string[] {
"EditorFramework",
}
);
DynamicallyLoadedModuleNames.AddRange(
new string[] {
"MainFrame",
"WorkspaceMenuStructure",
"MainFrame",
}
);
}
}