Files
UnrealEngineUWP/Engine/Source/Editor/LevelEditor/LevelEditor.Build.cs
Robb Surridge 65a3c1236d Move IntroTutorials to a plugin. Part 1: move code module and clean up references.
#jira 141830
#preflight 6202f3e4bd4f846436f1dfc6
#rb lauren.barnes

[CL 18920903 by Robb Surridge in ue5-main branch]
2022-02-09 13:00:06 -05:00

128 lines
2.5 KiB
C#

// Copyright Epic Games, Inc. All Rights Reserved.
using UnrealBuildTool;
public class LevelEditor : ModuleRules
{
public LevelEditor(ReadOnlyTargetRules Target) : base(Target)
{
PrivateIncludePathModuleNames.AddRange(
new string[] {
"AssetTools",
"ClassViewer",
"MainFrame",
"PlacementMode",
"SlateReflector",
"AppFramework",
"PortalServices",
"Persona",
"DataLayerEditor",
"MergeActors",
}
);
PublicIncludePathModuleNames.AddRange(
new string[] {
"Settings",
"HeadMountedDisplay",
"UnrealEd",
"VREditor",
"CommonMenuExtensions"
}
);
PrivateDependencyModuleNames.AddRange(
new string[] {
"LevelSequence",
"Analytics",
"ApplicationCore",
"Core",
"CoreUObject",
"LauncherPlatform",
"InputCore",
"Slate",
"SlateCore",
"EditorStyle",
"Engine",
"MessageLog",
"SourceControl",
"SourceControlWindows",
"StatsViewer",
"EditorFramework",
"UnrealEd",
"DeveloperSettings",
"RenderCore",
"DeviceProfileServices",
"ContentBrowser",
"SceneOutliner",
"ActorPickerMode",
"RHI",
"Projects",
"TargetPlatform",
"TypedElementFramework",
"TypedElementRuntime",
"EngineSettings",
"PropertyEditor",
"Kismet",
"KismetWidgets",
"Sequencer",
"Foliage",
"HierarchicalLODOutliner",
"HierarchicalLODUtilities",
"MaterialShaderQualitySettings",
"PixelInspectorModule",
"CommonMenuExtensions",
"ToolMenus",
"StatusBar",
"AppFramework",
"EditorSubsystem",
"EnvironmentLightingViewer",
"DesktopPlatform",
"DataLayerEditor",
"TranslationEditor",
"SubobjectEditor",
"SubobjectDataInterface",
"DerivedDataEditor",
"EditorWidgets",
"ToolWidgets",
}
);
DynamicallyLoadedModuleNames.AddRange(
new string[] {
"MainFrame",
"ClassViewer",
"DeviceManager",
"SettingsEditor",
"SlateReflector",
"AutomationWindow",
"Layers",
"WorldBrowser",
"WorldPartitionEditor",
"AssetTools",
"WorkspaceMenuStructure",
"NewLevelDialog",
"DeviceProfileEditor",
"PlacementMode",
"HeadMountedDisplay",
"VREditor",
"Persona",
"LevelAssetEditor",
"MergeActors",
}
);
if (Target.bBuildTargetDeveloperTools)
{
DynamicallyLoadedModuleNames.Add("SessionFrontend");
}
if (Target.bWithLiveCoding)
{
PrivateIncludePathModuleNames.Add("LiveCoding");
}
}
}