You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
102 lines
2.0 KiB
C#
102 lines
2.0 KiB
C#
// Copyright 1998-2019 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",
|
|
"IntroTutorials",
|
|
"AppFramework",
|
|
"PortalServices"
|
|
}
|
|
);
|
|
|
|
PublicIncludePathModuleNames.AddRange(
|
|
new string[] {
|
|
"Settings",
|
|
"IntroTutorials",
|
|
"HeadMountedDisplay",
|
|
"UnrealEd",
|
|
"VREditor",
|
|
"CommonMenuExtensions"
|
|
}
|
|
);
|
|
|
|
PrivateDependencyModuleNames.AddRange(
|
|
new string[] {
|
|
"LevelSequence",
|
|
"Analytics",
|
|
"Core",
|
|
"CoreUObject",
|
|
"LauncherPlatform",
|
|
"InputCore",
|
|
"Slate",
|
|
"SlateCore",
|
|
"EditorStyle",
|
|
"Engine",
|
|
"MessageLog",
|
|
"SourceControl",
|
|
"SourceControlWindows",
|
|
"StatsViewer",
|
|
"UnrealEd",
|
|
"RenderCore",
|
|
"DeviceProfileServices",
|
|
"ContentBrowser",
|
|
"SceneOutliner",
|
|
"ActorPickerMode",
|
|
"RHI",
|
|
"Projects",
|
|
"TargetPlatform",
|
|
"EngineSettings",
|
|
"PropertyEditor",
|
|
"Persona",
|
|
"Kismet",
|
|
"KismetWidgets",
|
|
"Sequencer",
|
|
"Foliage",
|
|
"HierarchicalLODOutliner",
|
|
"HierarchicalLODUtilities",
|
|
"MaterialShaderQualitySettings",
|
|
"PixelInspectorModule",
|
|
"CommonMenuExtensions"
|
|
}
|
|
);
|
|
|
|
DynamicallyLoadedModuleNames.AddRange(
|
|
new string[] {
|
|
"MainFrame",
|
|
"ClassViewer",
|
|
"DeviceManager",
|
|
"SettingsEditor",
|
|
"SessionFrontend",
|
|
"SlateReflector",
|
|
"AutomationWindow",
|
|
"Layers",
|
|
"WorldBrowser",
|
|
"EditorWidgets",
|
|
"AssetTools",
|
|
"WorkspaceMenuStructure",
|
|
"NewLevelDialog",
|
|
"DeviceProfileEditor",
|
|
"PlacementMode",
|
|
"IntroTutorials",
|
|
"HeadMountedDisplay",
|
|
"VREditor"
|
|
}
|
|
);
|
|
|
|
if(Target.bWithLiveCoding)
|
|
{
|
|
PrivateIncludePathModuleNames.Add("LiveCoding");
|
|
}
|
|
}
|
|
}
|