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]
29 lines
541 B
C#
29 lines
541 B
C#
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
using UnrealBuildTool;
|
|
|
|
public class EditorWidgets : ModuleRules
|
|
{
|
|
public EditorWidgets(ReadOnlyTargetRules Target) : base(Target)
|
|
{
|
|
PrivateIncludePathModuleNames.Add("AssetRegistry");
|
|
|
|
PublicDependencyModuleNames.AddRange(
|
|
new string[] {
|
|
"Core",
|
|
"Engine",
|
|
"InputCore",
|
|
"Slate",
|
|
"SlateCore",
|
|
"UnrealEd",
|
|
"CoreUObject",
|
|
"ToolWidgets",
|
|
"EditorConfig",
|
|
"AssetDefinition",
|
|
}
|
|
);
|
|
|
|
DynamicallyLoadedModuleNames.Add("AssetRegistry");
|
|
}
|
|
}
|