You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
#preflight 647b5f919c5bac5c6f8be490 #jira [CL 25782459 by bryan sefcik in ue5-main branch]
36 lines
617 B
C#
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",
|
|
}
|
|
);
|
|
}
|
|
}
|