Files
UnrealEngineUWP/Engine/Source/Editor/MainFrame/MainFrame.Build.cs
Steve Robb 7661666dcb Error when a module is both a dependency and dynamically loaded.
Fixes for lots of existing modules by removing all dynamically loaded duplicates (this is probably not the correct solution, but is the safest).

#codereview robert.manuszewski

[CL 2610845 by Steve Robb in Main branch]
2015-07-06 05:46:20 -04:00

85 lines
1.7 KiB
C#
Raw Blame History

This file contains invisible Unicode characters
This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
// Copyright 1998-2015 Epic Games, Inc. All Rights Reserved.
using UnrealBuildTool;
public class MainFrame : ModuleRules
{
public MainFrame(TargetInfo Target)
{
PublicDependencyModuleNames.AddRange(
new string[]
{
"Documentation",
}
);
PrivateDependencyModuleNames.AddRange(
new string[] {
"Core",
"CoreUObject",
"CrashTracker",
"Engine",
"EngineSettings",
"InputCore",
"RHI",
"ShaderCore",
"Slate",
"SlateCore",
"EditorStyle",
"SourceControl",
"SourceControlWindows",
"TargetPlatform",
"DesktopPlatform",
"UnrealEd",
"WorkspaceMenuStructure",
"MessageLog",
// "SearchUI",
"TranslationEditor",
"Projects",
"DeviceProfileEditor",
"UndoHistory",
}
);
PrivateIncludePathModuleNames.AddRange(
new string[] {
"AssetTools",
"DesktopPlatform",
"GameProjectGeneration",
"ProjectTargetPlatformEditor",
"LevelEditor",
"OutputLog",
"SuperSearch",
"Settings",
"SourceCodeAccess",
"Toolbox",
"LocalizationDashboard",
}
);
PrivateIncludePaths.AddRange(
new string[] {
"Editor/MainFrame/Private",
"Editor/MainFrame/Private/Frame",
"Editor/MainFrame/Private/Menus",
}
);
DynamicallyLoadedModuleNames.AddRange(
new string[] {
"AssetTools",
"GameProjectGeneration",
"ProjectTargetPlatformEditor",
"LevelEditor",
"OutputLog",
"SuperSearch",
"SourceCodeAccess",
"EditorLiveStreaming",
"HotReload",
"LocalizationDashboard"
}
);
}
}