You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
88 lines
1.8 KiB
C#
88 lines
1.8 KiB
C#
// 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",
|
||
"DesktopPlatform",
|
||
"Documentation",
|
||
"GameProjectGeneration",
|
||
"ProjectTargetPlatformEditor",
|
||
"LevelEditor",
|
||
"OutputLog",
|
||
"SuperSearch",
|
||
"TranslationEditor",
|
||
"SourceCodeAccess",
|
||
"EditorLiveStreaming",
|
||
"HotReload",
|
||
"LocalizationDashboard"
|
||
}
|
||
);
|
||
}
|
||
}
|