You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
AutomationController -> UnrealEd -> AutomationController SubobjectEditor -> UnrealEd -> SubobjectEditor #preflight 6478a225c26e3b2449f13c0f #jira [CL 25730973 by bryan sefcik in ue5-main branch]
53 lines
1.1 KiB
C#
53 lines
1.1 KiB
C#
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
using UnrealBuildTool;
|
|
|
|
public class Blutility : ModuleRules
|
|
{
|
|
public Blutility(ReadOnlyTargetRules Target) : base(Target)
|
|
{
|
|
PrivateIncludePathModuleNames.Add("AssetTools");
|
|
|
|
PublicDependencyModuleNames.AddRange(new string[] {
|
|
"EditorSubsystem",
|
|
"MainFrame"
|
|
});
|
|
|
|
PrivateDependencyModuleNames.AddRange(
|
|
new string[] {
|
|
"AutomationController",
|
|
"Core",
|
|
"CoreUObject",
|
|
"Engine",
|
|
"InputCore",
|
|
"Slate",
|
|
"SlateCore",
|
|
"EditorFramework",
|
|
"UnrealEd",
|
|
"Kismet",
|
|
"AssetDefinition",
|
|
"AssetRegistry",
|
|
"AssetTools",
|
|
"WorkspaceMenuStructure",
|
|
"ContentBrowser",
|
|
"ContentBrowserData",
|
|
"ClassViewer",
|
|
"CollectionManager",
|
|
"PropertyEditor",
|
|
"BlueprintGraph",
|
|
"Json",
|
|
"JsonUtilities",
|
|
"UMG",
|
|
"UMGEditor",
|
|
"KismetCompiler",
|
|
"ToolMenus",
|
|
"RHI",
|
|
"RenderCore",
|
|
"ImageWrapper",
|
|
"ImageWriteQueue",
|
|
"DeveloperSettings",
|
|
}
|
|
);
|
|
}
|
|
}
|