Files
UnrealEngineUWP/Engine/Source/Editor/ContentBrowser/ContentBrowser.Build.cs
Matt Kuhlenschmidt 156b9c1ec7 Content browser drawer improvements
- Always focus search field even when clicking drawer button
- Drawer is now summoned if there is no content browser when clicking the browse button in the details panel or asset editor.
- Creation of the content browser drawer is now handled by the content browser singleton.

[CL 14513618 by Matt Kuhlenschmidt in ue5-main branch]
2020-10-19 09:18:57 -04:00

69 lines
1.3 KiB
C#

// Copyright Epic Games, Inc. All Rights Reserved.
using UnrealBuildTool;
public class ContentBrowser : ModuleRules
{
public ContentBrowser(ReadOnlyTargetRules Target) : base(Target)
{
PrivateIncludePathModuleNames.AddRange(
new string[] {
"AssetRegistry",
"CollectionManager",
"EditorWidgets",
"GameProjectGeneration",
"MainFrame",
"PackagesDialog",
"SourceControl",
"SourceControlWindows"
}
);
PrivateDependencyModuleNames.AddRange(
new string[] {
"AppFramework",
"Core",
"CoreUObject",
"ApplicationCore",
"InputCore",
"Engine",
"Slate",
"SlateCore",
"EditorStyle",
"AssetTools",
"ContentBrowserData",
"SourceControl",
"SourceControlWindows",
"WorkspaceMenuStructure",
"EditorFramework",
"UnrealEd",
"EditorWidgets",
"Projects",
"AddContentDialog",
"DesktopPlatform",
"AssetRegistry",
"AssetTagsEditor",
"ToolMenus",
"StatusBar",
}
);
DynamicallyLoadedModuleNames.AddRange(
new string[] {
"PropertyEditor",
"PackagesDialog",
"CollectionManager",
"GameProjectGeneration",
"MainFrame"
}
);
PublicIncludePathModuleNames.AddRange(
new string[] {
"ContentBrowserData",
"IntroTutorials"
}
);
}
}