Files
UnrealEngine/Engine/Source/Editor/ContentBrowser/ContentBrowser.Build.cs
2025-05-18 13:04:45 +08: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",
}
);
}
}