Files
UnrealEngineUWP/Engine/Source/Editor/ContentBrowserData/ContentBrowserData.Build.cs
bryan sefcik ecd9fa8a99 Removed dependencies that aren't needed by the modules that declare them. This is to help fix bad circular dependencies in the engine.
#preflight 647b5f919c5bac5c6f8be490
#jira

[CL 25782459 by bryan sefcik in ue5-main branch]
2023-06-03 15:25:01 -04:00

36 lines
617 B
C#

// Copyright Epic Games, Inc. All Rights Reserved.
using UnrealBuildTool;
public class ContentBrowserData : ModuleRules
{
public ContentBrowserData(ReadOnlyTargetRules Target) : base(Target)
{
UnsafeTypeCastWarningLevel = WarningLevel.Error;
PublicDependencyModuleNames.AddRange(
new string[] {
"Core",
"CoreUObject",
"Engine",
"EditorSubsystem",
"UnrealEd",
"Projects",
}
);
PublicIncludePathModuleNames.AddRange(
new string[] {
"CollectionManager",
}
);
PrivateDependencyModuleNames.AddRange(
new string[] {
"Slate",
"SlateCore",
}
);
}
}