Files
UnrealEngine/Engine/Source/Editor/FontEditor/FontEditor.Build.cs
2025-05-18 13:04:45 +08: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",
}
);
}
}