You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
#rnx #ROBOMERGE-OWNER: rex.hill #ROBOMERGE-AUTHOR: rex.hill #ROBOMERGE-SOURCE: CL 12402687 via CL 12402690 via CL 12404501 #ROBOMERGE-BOT: (v671-12333473) [CL 12404533 by rex hill in Release-Engine-Staging branch]
48 lines
855 B
C#
48 lines
855 B
C#
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
using UnrealBuildTool;
|
|
|
|
public class CommonMenuExtensions : ModuleRules
|
|
{
|
|
// TODO: Is this a minimal enough list?
|
|
public CommonMenuExtensions(ReadOnlyTargetRules Target) : base(Target)
|
|
{
|
|
PrivateIncludePathModuleNames.AddRange(
|
|
new string[] {
|
|
}
|
|
);
|
|
|
|
PublicIncludePathModuleNames.AddRange(
|
|
new string[] {
|
|
}
|
|
);
|
|
|
|
PrivateDependencyModuleNames.AddRange(
|
|
new string[] {
|
|
"Core",
|
|
"CoreUObject",
|
|
"LauncherPlatform",
|
|
"InputCore",
|
|
"Slate",
|
|
"SlateCore",
|
|
"EditorStyle",
|
|
"Engine",
|
|
"MessageLog",
|
|
"UnrealEd",
|
|
"RenderCore",
|
|
"EngineSettings",
|
|
"HierarchicalLODOutliner",
|
|
"HierarchicalLODUtilities",
|
|
"MaterialShaderQualitySettings",
|
|
"ToolMenus",
|
|
}
|
|
);
|
|
|
|
DynamicallyLoadedModuleNames.AddRange(
|
|
new string[] {
|
|
}
|
|
);
|
|
|
|
}
|
|
}
|