You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
#jira #preflight 634f491669246074dbb2719d [CL 22633214 by bryan sefcik in ue5-main branch]
33 lines
540 B
C#
33 lines
540 B
C#
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
using UnrealBuildTool;
|
|
|
|
public class VirtualizationEditor : ModuleRules
|
|
{
|
|
public VirtualizationEditor(ReadOnlyTargetRules Target)
|
|
: base(Target)
|
|
{
|
|
PrivateDependencyModuleNames.AddRange(
|
|
new string[]
|
|
{
|
|
"ContentBrowserData",
|
|
"Core",
|
|
"CoreUObject",
|
|
"Engine",
|
|
"UnrealEd",
|
|
"ToolMenus",
|
|
"Slate",
|
|
"SlateCore",
|
|
"Virtualization"
|
|
});
|
|
|
|
PrivateIncludePathModuleNames.AddRange
|
|
(
|
|
new string[]
|
|
{
|
|
"WorkspaceMenuStructure",
|
|
}
|
|
);
|
|
}
|
|
}
|