Files
UnrealEngine/Engine/Source/Editor/ContentBrowser/ContentBrowser.Build.cs
Brandyn / Techy fcc1b09210 init
2026-04-04 15:40:51 -05:00

72 lines
1.4 KiB
C#

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