2019-12-26 15:33:43 -05:00
|
|
|
// Copyright Epic Games, Inc. All Rights Reserved.
|
2019-06-07 11:22:52 -04:00
|
|
|
|
|
|
|
|
using UnrealBuildTool;
|
|
|
|
|
|
|
|
|
|
public class StructViewer : ModuleRules
|
|
|
|
|
{
|
|
|
|
|
public StructViewer(ReadOnlyTargetRules Target) : base(Target)
|
|
|
|
|
{
|
|
|
|
|
PrivateIncludePathModuleNames.AddRange(
|
|
|
|
|
new string[] {
|
|
|
|
|
"AssetRegistry",
|
|
|
|
|
"EditorWidgets",
|
2022-09-11 18:33:06 -04:00
|
|
|
"WorkspaceMenuStructure",
|
2019-06-07 11:22:52 -04:00
|
|
|
}
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
PrivateDependencyModuleNames.AddRange(
|
|
|
|
|
new string[] {
|
|
|
|
|
"Core",
|
|
|
|
|
"CoreUObject",
|
|
|
|
|
"Engine",
|
|
|
|
|
"InputCore",
|
|
|
|
|
"Slate",
|
|
|
|
|
"SlateCore",
|
2020-08-14 13:24:16 -04:00
|
|
|
"EditorFramework",
|
2019-06-07 11:22:52 -04:00
|
|
|
"UnrealEd",
|
2020-10-22 19:19:16 -04:00
|
|
|
"ContentBrowserData",
|
2019-06-07 11:22:52 -04:00
|
|
|
"Settings",
|
|
|
|
|
}
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
DynamicallyLoadedModuleNames.AddRange(
|
|
|
|
|
new string[] {
|
|
|
|
|
"AssetRegistry",
|
|
|
|
|
"AssetTools",
|
|
|
|
|
"EditorWidgets",
|
|
|
|
|
}
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
}
|