2022-09-05 06:19:34 -04:00
|
|
|
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
|
|
|
|
|
|
using UnrealBuildTool;
|
|
|
|
|
|
|
|
|
|
public class VirtualizationEditor : ModuleRules
|
|
|
|
|
{
|
|
|
|
|
public VirtualizationEditor(ReadOnlyTargetRules Target)
|
|
|
|
|
: base(Target)
|
|
|
|
|
{
|
2024-05-13 08:47:27 -04:00
|
|
|
UnsafeTypeCastWarningLevel = WarningLevel.Error;
|
|
|
|
|
|
2022-09-05 06:19:34 -04:00
|
|
|
PrivateDependencyModuleNames.AddRange(
|
|
|
|
|
new string[]
|
|
|
|
|
{
|
|
|
|
|
"ContentBrowserData",
|
|
|
|
|
"Core",
|
|
|
|
|
"CoreUObject",
|
|
|
|
|
"Engine",
|
|
|
|
|
"UnrealEd",
|
|
|
|
|
"ToolMenus",
|
2023-02-27 09:34:47 -05:00
|
|
|
"SourceControl",
|
2022-09-05 06:19:34 -04:00
|
|
|
"Slate",
|
|
|
|
|
"SlateCore",
|
|
|
|
|
"Virtualization"
|
|
|
|
|
});
|
2022-10-19 14:38:31 -04:00
|
|
|
|
|
|
|
|
PrivateIncludePathModuleNames.AddRange
|
|
|
|
|
(
|
|
|
|
|
new string[]
|
|
|
|
|
{
|
|
|
|
|
"WorkspaceMenuStructure",
|
|
|
|
|
}
|
|
|
|
|
);
|
2022-09-05 06:19:34 -04:00
|
|
|
}
|
|
|
|
|
}
|