Files
UnrealEngineUWP/Engine/Source/Editor/LevelEditor/LevelEditor.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

90 lines
1.8 KiB
C#

// Copyright 1998-2015 Epic Games, Inc. All Rights Reserved.
using UnrealBuildTool;
public class LevelEditor : ModuleRules
{
public LevelEditor(TargetInfo Target)
{
PrivateIncludePathModuleNames.AddRange(
new string[] {
"AssetTools",
"ClassViewer",
"MainFrame",
"PlacementMode",
"ReferenceViewer",
"SizeMap",
"IntroTutorials",
"AppFramework"
}
);
PublicIncludePathModuleNames.AddRange(
new string[] {
"Settings",
"UserFeedback",
"IntroTutorials"
}
);
PrivateDependencyModuleNames.AddRange(
new string[] {
"Analytics",
"Core",
"CoreUObject",
"DesktopPlatform",
"InputCore",
"Slate",
"SlateCore",
"SlateReflector",
"EditorStyle",
"Engine",
"MessageLog",
"NewsFeed",
"SourceControl",
"SourceControlWindows",
"StatsViewer",
"UnrealEd",
"RenderCore",
"DeviceProfileServices",
"ContentBrowser",
"SceneOutliner",
"ActorPickerMode",
"RHI",
"Projects",
"TargetPlatform",
"EngineSettings",
"PropertyEditor",
"WebBrowser",
"Persona",
"Kismet",
"KismetWidgets",
"Sequencer"
}
);
DynamicallyLoadedModuleNames.AddRange(
new string[] {
"MainFrame",
"ClassViewer",
"DeviceManager",
"SettingsEditor",
"SessionFrontend",
"AutomationWindow",
"Layers",
"WorldBrowser",
"EditorWidgets",
"AssetTools",
"WorkspaceMenuStructure",
"NewLevelDialog",
"DeviceProfileEditor",
"PlacementMode",
"UserFeedback",
"ReferenceViewer",
"SizeMap",
"IntroTutorials"
}
);
}
}