Files
UnrealEngineUWP/Engine/Source/Editor/ContentBrowser/ContentBrowser.Build.cs
JeanMichel Dignard 38ef5daae8 Fixed truncation warnings in the ContentBrowser modules
#jira UE-166269
#rb yohann.dossantos
#preflight 63e12ffa797b029c0a6507fe

[CL 24032337 by JeanMichel Dignard in ue5-main branch]
2023-02-06 12:05:08 -05:00

75 lines
1.5 KiB
C#

// Copyright Epic Games, Inc. All Rights Reserved.
using UnrealBuildTool;
public class ContentBrowser : ModuleRules
{
public ContentBrowser(ReadOnlyTargetRules Target) : base(Target)
{
UnsafeTypeCastWarningLevel = WarningLevel.Error;
PrivateIncludePathModuleNames.AddRange(
new string[] {
"AssetRegistry",
"CollectionManager",
"EditorWidgets",
"GameProjectGeneration",
"MainFrame",
"PackagesDialog",
"SourceControl",
"SourceControlWindows"
}
);
PrivateDependencyModuleNames.AddRange(
new string[] {
"AssetDefinition",
"AppFramework",
"Core",
"CoreUObject",
"ApplicationCore",
"InputCore",
"EditorConfig",
"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[] {
"AssetTools",
"CollectionManager",
"ContentBrowserData",
}
);
}
}