You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
#pf https://horde.devtools.epicgames.com/job/612d40b9423a8f00013c5b92 #ROBOMERGE-AUTHOR: matt.kuhlenschmidt #ROBOMERGE-SOURCE: CL 17457077 in //UE5/Main/... #ROBOMERGE-BOT: STARSHIP (Main -> Release-Engine-Test) (v870-17433530) [CL 17457092 by matt kuhlenschmidt in ue5-release-engine-test branch]
70 lines
1.4 KiB
C#
70 lines
1.4 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",
|
|
"ToolWidgets",
|
|
}
|
|
);
|
|
|
|
DynamicallyLoadedModuleNames.AddRange(
|
|
new string[] {
|
|
"PropertyEditor",
|
|
"PackagesDialog",
|
|
"CollectionManager",
|
|
"GameProjectGeneration",
|
|
"MainFrame"
|
|
}
|
|
);
|
|
|
|
PublicIncludePathModuleNames.AddRange(
|
|
new string[] {
|
|
"ContentBrowserData",
|
|
"IntroTutorials"
|
|
}
|
|
);
|
|
}
|
|
}
|