Files
UnrealEngineUWP/Engine/Source/Editor/ContentBrowser/ContentBrowser.Build.cs
robert millar 12e45d4ab8 Provide telemetry to SAssetView. Telemetry is not sent to any endpoint for licensees.
#rb julien.st-jean,logan.buchy,wes.hunt

[CL 26301344 by robert millar in 5.3 branch]
2023-06-28 18:20:01 -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)
{
UnsafeTypeCastWarningLevel = WarningLevel.Error;
PrivateIncludePathModuleNames.AddRange(
new string[] {
"MainFrame",
}
);
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",
"TelemetryUtils"
}
);
DynamicallyLoadedModuleNames.AddRange(
new string[] {
"PropertyEditor",
"PackagesDialog",
"CollectionManager",
"GameProjectGeneration",
"MainFrame"
}
);
PublicIncludePathModuleNames.AddRange(
new string[] {
"AssetTools",
"CollectionManager",
"ContentBrowserData",
}
);
}
}