Files
UnrealEngineUWP/Engine/Source/Editor/MainFrame/MainFrame.Build.cs
Thomas Sarkanen 2e3d1f5aae #summary Source code access is now done via plugins
#ttp 330039 	EDITOR: Platform-agnostic editor code depends on Windows-only VSAccessor headers
#detail 	Source code access is now extensible via plugins, so any new editors can be easily added.
#add 	Added SourceCodeAccess module that routes access via plugins.
#change 	Moved much of the old VSAccessor code into a new VisualStudioSourceCodeAccess plugin.
#add 	Added a counterpart XCode plugin & migrated the code from FSourceCodeNavigation (Applescript etc.) into there.
#remove 	Removed applescript for XCode access (it is now done via code).
#remove 	Removed source code access functionality from platform layer.
#add 	Added details customization for source code access settings, so users can choose their own accessor.
#remove 	Removed dependencies on VSAccessor.
#change 	Changed API in SWidget to not require building a string to be parsed, instead this acesses and forwards filenames & line numbers.
#extra 	Tested on Mac by Mark S.
reviewed by 	Andrew.Brown

[CL 2048697 by Thomas Sarkanen in Main branch]
2014-04-23 19:19:51 -04:00

73 lines
1.4 KiB
C#

// Copyright 1998-2014 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",
"InputCore",
"RHI",
"ShaderCore",
"Slate",
"EditorStyle",
"SourceControl",
"SourceControlWindows",
"TargetPlatform",
"UnrealEd",
"WorkspaceMenuStructure",
"MessageLog",
// "SearchUI",
"TranslationEditor"
}
);
PrivateIncludePathModuleNames.AddRange(
new string[] {
"AssetTools",
"DesktopPlatform",
"GameProjectGeneration",
"LevelEditor",
"OutputLog",
"Settings",
"SourceCodeAccess",
}
);
PrivateIncludePaths.AddRange(
new string[] {
"Editor/MainFrame/Private",
"Editor/MainFrame/Private/Frame",
"Editor/MainFrame/Private/Menus",
}
);
DynamicallyLoadedModuleNames.AddRange(
new string[] {
"AssetTools",
"DesktopPlatform",
"Documentation",
"GameProjectGeneration",
"LevelEditor",
"OutputLog",
"TranslationEditor",
"SourceCodeAccess",
}
);
}
}