You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
#jira UE-166269 #rb yohann.dossantos #preflight 63e12ffa797b029c0a6507fe [CL 24032337 by JeanMichel Dignard in ue5-main branch]
38 lines
657 B
C#
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",
|
|
}
|
|
);
|
|
}
|
|
}
|