Files
UnrealEngineUWP/Engine/Source/Editor/ContentBrowserData/ContentBrowserData.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

38 lines
657 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",
"EditorFramework",
"UnrealEd",
"Projects",
}
);
PublicIncludePathModuleNames.AddRange(
new string[] {
"CollectionManager",
}
);
PrivateDependencyModuleNames.AddRange(
new string[] {
"Slate",
"SlateCore",
"InputCore",
}
);
}
}